update permission

This commit is contained in:
mamoss 2025-12-07 13:51:01 +07:00
parent b436b67167
commit f814454003
15 changed files with 99587 additions and 83 deletions

View file

@ -26,6 +26,18 @@ export class SubDistrict extends EntityBase {
})
districtId: string;
// @Column({
// comment: "mark",
// default: null,
// })
// importUpdate: number;
// @Column({
// comment: "refId",
// default: null,
// })
// refId: number;
@ManyToOne(() => District, (district) => district.subDistricts)
@JoinColumn({ name: "districtId" })
district: District;