ตำแหน่งลูกจ้างชัวคราว

This commit is contained in:
mamoss 2025-04-29 15:33:00 +07:00
parent 137748408f
commit 8d87ba0317
6 changed files with 43 additions and 2875 deletions

View file

@ -405,6 +405,14 @@ export class ProfileEmployee extends EntityBase {
})
posTypeNameTemp: string;
@Column({
nullable: true,
comment: "ประเภทชื่อย่อ",
length: 40,
default: null,
})
posTypeShortNameTemp: string;
@Column({
nullable: true,
comment: "id ระดับ",
@ -787,7 +795,7 @@ export class ProfileEmployee extends EntityBase {
@OneToMany(() => StateOperatorUser, (v) => v.profile)
stateOperatorUsers: StateOperatorUser[];
@OneToMany(() => PositionSalaryEditHistory, (v) => v.profileEmployee)
positionSalaryEditHistory: PositionSalaryEditHistory[];

View file

@ -24,7 +24,9 @@ export class ProfileInsignia extends EntityBase {
profileEmployeeId: string;
@Column({
nullable: true,
comment: "ปีที่ยื่นขอ",
default: null,
})
year: number;

View file

@ -5,7 +5,11 @@ import { Insignia } from "./Insignia";
@Entity("profileInsigniaHistory")
export class ProfileInsigniaHistory extends EntityBase {
@Column({ comment: "ปีที่ยื่นขอ" })
@Column({
nullable: true,
comment: "ปีที่ยื่นขอ",
default: null,
})
year: number;
@Column({ nullable: true, length: 20, comment: "ลำดับที่", default: null })