แนบไฟล์คำสั่ง

This commit is contained in:
kittapath 2024-09-16 15:15:59 +07:00
parent 9d755fc8ff
commit d3aa76b3f8
6 changed files with 107 additions and 6 deletions

View file

@ -21,6 +21,22 @@ export class CommandType extends EntityBase {
})
code: string;
@Column({
nullable: true,
comment: "คำสั่งเรื่อง",
length: 255,
default: null,
})
fileCover: string;
@Column({
nullable: true,
comment: "คำสั่งเรื่อง",
length: 255,
default: null,
})
fileAttachment: string;
@Column({
nullable: true,
comment: "เนื้อหาคำสั่งส่วนต้น",

View file

@ -11,6 +11,13 @@ export class HR_POSITION_OFFICER {
@PrimaryGeneratedColumn()
id!: number;
@Column({
nullable: true,
type: "text",
default: null,
})
FLAG_PERSON_TYPE: string;
@Column({
nullable: true,
type: "text",