table profileHonor add isUpload

This commit is contained in:
kittapath 2025-01-28 14:37:40 +07:00
parent 76a994d7df
commit 8b699f6441
10 changed files with 81 additions and 3 deletions

View file

@ -115,6 +115,12 @@ export class ProfileInsignia extends EntityBase {
})
note: string;
@Column({
comment: "แนบไฟล์เอกสาร",
default: false,
})
isUpload: boolean;
@Column({
nullable: true,
length: 40,
@ -190,4 +196,5 @@ export type UpdateProfileInsignia = {
refCommandDate?: Date | null;
refCommandNo?: string | null;
note?: string | null;
isUpload?: boolean | null;
};