แก้ ไข คำ สั่ง tab0
This commit is contained in:
parent
22ae951626
commit
5ccbdd1f61
3 changed files with 173 additions and 0 deletions
|
|
@ -94,6 +94,24 @@ export class Command extends EntityBase {
|
|||
})
|
||||
isAttachment: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "ออกคำสั่งแบบ Digital Signature",
|
||||
default: null,
|
||||
})
|
||||
isSignature: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "ยืนยันทำแบบร่าง",
|
||||
default: false,
|
||||
})
|
||||
isDraft: boolean;
|
||||
|
||||
@Column({
|
||||
comment: "ผู้มีอำนาจลงนาม",
|
||||
default: false,
|
||||
})
|
||||
isSign: boolean;
|
||||
|
||||
@ManyToOne(() => CommandType, (commandType) => commandType.commands)
|
||||
@JoinColumn({ name: "commandTypeId" })
|
||||
commandType: CommandType;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue