no message
This commit is contained in:
parent
5421b6f111
commit
9b3028eb8a
2 changed files with 62 additions and 2 deletions
|
|
@ -51,7 +51,9 @@ export class SalaryProfile extends EntityBase {
|
|||
posMasterNoPrefix: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เลขที่ตำแหน่ง เป็นตัวเลข",
|
||||
default: null,
|
||||
})
|
||||
posMasterNo: number;
|
||||
|
||||
|
|
@ -80,53 +82,67 @@ export class SalaryProfile extends EntityBase {
|
|||
position: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ประเภทตำแหน่ง",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posType: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ระดับตำแหน่ง",
|
||||
length: 100,
|
||||
default: null,
|
||||
})
|
||||
posLevel: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ตำแหน่งทางการบริหาร",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
posExecutive: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินเดือนฐาน",
|
||||
default: null,
|
||||
})
|
||||
amount: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินพิเศษ",
|
||||
default: null,
|
||||
})
|
||||
amountSpecial: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "จำนวนเงินที่ใช้เลื่อน",
|
||||
default: null,
|
||||
})
|
||||
amountUse: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เงินเดือนหลังเลื่อน",
|
||||
default: null,
|
||||
})
|
||||
positionSalaryAmount: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment:
|
||||
"ประเภทการเลื่อน(ขั้น) PENDING->รายชื่อคนครอง NONE->ไม่ได้เลื่อน HAFT->ครึ่งขั้น FULL->1ขั้น FULLHAFT->1.5ขั้น",
|
||||
length: 20,
|
||||
default: null,
|
||||
default: "PENDING",
|
||||
})
|
||||
type: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "",
|
||||
length: 40,
|
||||
})
|
||||
|
|
@ -141,6 +157,7 @@ export class SalaryProfile extends EntityBase {
|
|||
root: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "",
|
||||
length: 40,
|
||||
})
|
||||
|
|
@ -155,6 +172,7 @@ export class SalaryProfile extends EntityBase {
|
|||
child1: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "",
|
||||
length: 40,
|
||||
})
|
||||
|
|
@ -169,6 +187,7 @@ export class SalaryProfile extends EntityBase {
|
|||
child2: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "",
|
||||
length: 40,
|
||||
})
|
||||
|
|
@ -183,6 +202,7 @@ export class SalaryProfile extends EntityBase {
|
|||
child3: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "",
|
||||
length: 40,
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue