API สร้างผังเงินเดือน

This commit is contained in:
Bright 2024-02-15 15:38:04 +07:00
parent 637a7b9605
commit 90e1050ad7
2 changed files with 111 additions and 4 deletions

View file

@ -14,13 +14,13 @@ export class Salarys extends EntityBase {
@Column({
length: 40,
comment: "Id ระดับของตำแหน่ง",
comment: "Id ประเภทของตำแหน่ง",
})
posTypeId: string;
@Column({
length: 40,
comment: "Id ประเภทของตำแหน่ง",
comment: "Id ระดับของตำแหน่ง",
})
posLevelId: string;
@ -73,7 +73,7 @@ export class Salarys extends EntityBase {
posLevel_: PosLevel;
}
export class CreateSalaryRank {
export class CreateSalary {
@Column()
salaryType: string;
@ -101,4 +101,4 @@ export class CreateSalaryRank {
}
export type UpdateSalaryRank = Partial<CreateSalaryRank> ;
export type UpdateSalary = Partial<CreateSalary> ;