migration profileSalaryHistory
This commit is contained in:
parent
da6c407678
commit
d29a4a4747
2 changed files with 24 additions and 0 deletions
|
|
@ -83,6 +83,14 @@ export class ProfileSalaryHistory extends EntityBase {
|
|||
})
|
||||
amount: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินพิเศษ",
|
||||
default: 0,
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
amountSpecial: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินประจำตำแหน่ง",
|
||||
default: 0,
|
||||
|
|
@ -149,6 +157,7 @@ export class CreateProfileSalaryHistory {
|
|||
profileId: string;
|
||||
date?: Date | null;
|
||||
amount?: Double | null;
|
||||
amountSpecial?: Double | null;
|
||||
positionSalaryAmount?: Double | null;
|
||||
mouthSalaryAmount?: Double | null;
|
||||
posNo: string | null;
|
||||
|
|
@ -165,6 +174,7 @@ export class CreateProfileSalaryHistory {
|
|||
export class UpdateProfileSalaryHistory {
|
||||
date?: Date | null;
|
||||
amount?: Double | null;
|
||||
amountSpecial?: Double | null;
|
||||
positionSalaryAmount?: Double | null;
|
||||
mouthSalaryAmount?: Double | null;
|
||||
posNo?: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue