add fields
This commit is contained in:
parent
97f1fc0a98
commit
35fb72e45d
4 changed files with 46 additions and 0 deletions
|
|
@ -67,6 +67,14 @@ export class CommandRecive extends EntityBase {
|
|||
})
|
||||
amount: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินพิเศษ",
|
||||
default: 0,
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
amountSpecial: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินประจำตำแหน่ง",
|
||||
default: 0,
|
||||
|
|
|
|||
|
|
@ -339,6 +339,14 @@ export class Profile extends EntityBase {
|
|||
})
|
||||
amount: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินพิเศษ",
|
||||
default: 0,
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
amountSpecial: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินประจำตำแหน่ง",
|
||||
default: 0,
|
||||
|
|
|
|||
|
|
@ -592,6 +592,14 @@ export class ProfileEmployee extends EntityBase {
|
|||
})
|
||||
amount: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินพิเศษ",
|
||||
default: 0,
|
||||
nullable: true,
|
||||
type: "double",
|
||||
})
|
||||
amountSpecial: Double;
|
||||
|
||||
@Column({
|
||||
comment: "เงินประจำตำแหน่ง",
|
||||
default: 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue