Fix District/subDistrict

This commit is contained in:
Bright 2024-05-15 10:04:19 +07:00
parent 27fefee8d7
commit 20ccb3f26d
4 changed files with 57 additions and 17 deletions

View file

@ -40,6 +40,9 @@ export class SubDistrict extends EntityBase {
export class CreateSubDistrict {
@Column()
name: string;
@Column()
districtId: string;
}
export type UpdateSubDistrict = Partial<CreateSubDistrict>;