no message
This commit is contained in:
parent
04406080dc
commit
fb5a30c699
4 changed files with 123 additions and 1 deletions
|
|
@ -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>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue