no message
This commit is contained in:
parent
36155a1a1c
commit
b27c61a01f
3 changed files with 39 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue