no message

This commit is contained in:
kittapath 2024-11-21 11:33:35 +07:00
parent 04406080dc
commit fb5a30c699
4 changed files with 123 additions and 1 deletions

View file

@ -17,6 +17,13 @@ export class OrgRevision extends EntityBase {
})
orgRevisionName: string;
@Column({
comment: "หมายเหตุ",
length: 255,
default: null,
})
remark: string;
@Column({
comment: "สถานะเป็นโครงสร้างปัจจุบันหรือไม่",
default: false,
@ -82,5 +89,8 @@ export class CreateOrgRevision {
@Column("uuid")
orgRevisionId?: string;
@Column()
remark: string;
}
export type UpdateOrgRevision = Partial<OrgRevision>;