update entity OrgGroup and Org_013 - 15

This commit is contained in:
AdisakKanthawilang 2024-01-26 09:56:27 +07:00
parent 6d136f8a97
commit dde127a222
9 changed files with 273 additions and 24 deletions

View file

@ -19,10 +19,10 @@ export class OrgRevision extends EntityBase {
@Column({
nullable: true,
type: "tinyint",
comment: "",
default: false
})
orgRevisionIsCurrent: number;
orgRevisionIsCurrent: boolean;
@Column({
nullable: true,
@ -33,10 +33,10 @@ export class OrgRevision extends EntityBase {
@Column({
nullable: true,
type: "tinyint",
comment: "",
default: false
})
orgRevisionIsDraft: number;
orgRevisionIsDraft: boolean;
}
export type UpdateOrgRevision = Partial<OrgRevision>;