ออกคำสั่งเงินเดือน

This commit is contained in:
Kittapath 2024-04-25 00:53:57 +07:00
parent a8a227e062
commit 9e749fbbcd
4 changed files with 476 additions and 164 deletions

View file

@ -10,6 +10,14 @@ export class SalaryProfile extends EntityBase {
})
salaryOrgId: string;
@Column({
nullable: true,
length: 40,
comment: "ไอดีโปรไฟล์",
default: null,
})
profileId: string;
@Column({
nullable: true,
comment: "คำนำหน้า",
@ -313,6 +321,9 @@ export class CreateSalaryProfile {
@Column()
type: string;
@Column()
profileId: string;
@Column()
prefix: string;

View file

@ -26,6 +26,14 @@ export class SalaryProfileEmployee extends EntityBase {
})
salaryLevelNew: number;
@Column({
nullable: true,
length: 40,
comment: "ไอดีโปรไฟล์",
default: null,
})
profileId: string;
@Column({
nullable: true,
comment: "คำนำหน้า",
@ -365,6 +373,9 @@ export class CreateSalaryProfileEmployee {
@Column()
type: string;
@Column()
profileId: string;
@Column()
prefix: string;