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

@ -12,6 +12,18 @@ export class Province extends EntityBase {
})
name: string;
// @Column({
// comment: "mark",
// default: null,
// })
// importUpdate: number;
// @Column({
// comment: "refId",
// default: null,
// })
// refId: number;
@OneToMany(() => District, (district) => district.province)
districts: District[];