update field

This commit is contained in:
AdisakKanthawilang 2025-06-16 10:54:17 +07:00
parent 926bbc1fda
commit be840b4a9c
3 changed files with 54 additions and 0 deletions

View file

@ -271,6 +271,22 @@ export class ProfileSalary extends EntityBase {
})
posNumCodeSitAbb: string;
@Column({
nullable: true,
length: 255,
comment: "ด้านทางการบริหาร",
default: null,
})
positionExecutiveField: string;
@Column({
nullable: true,
length: 255,
comment: "ด้าน/สาขา",
default: null,
})
positionArea: string;
@ManyToOne(() => Command, (command) => command.profileSalarys)
@JoinColumn({ name: "commandId" })
command: Command;
@ -305,6 +321,8 @@ export class CreateProfileSalary {
positionLine?: string | null;
positionPathSide?: string | null;
positionExecutive?: string | null;
positionExecutiveField?: string | null;
positionArea?: string | null;
amount?: Double | null;
amountSpecial?: Double | null;
positionSalaryAmount?: Double | null;