no message

This commit is contained in:
Kittapath 2024-05-28 15:29:05 +07:00
parent 36155a1a1c
commit b27c61a01f
3 changed files with 39 additions and 1 deletions

View file

@ -34,6 +34,14 @@ export class SalaryProfileEmployee extends EntityBase {
})
profileId: string;
@Column({
nullable: true,
comment: "ยศ",
length: 255,
default: null,
})
rank: string;
@Column({
nullable: true,
comment: "คำนำหน้า",
@ -376,6 +384,9 @@ export class CreateSalaryProfileEmployee {
@Column()
profileId: string;
@Column()
rank?: string | null;
@Column()
prefix: string;
@ -407,7 +418,7 @@ export class CreateSalaryProfileEmployee {
posType: string | null;
@Column()
posLevel: string | null;
posLevel: number | null;
@Column()
group: number | null;