ตำแหน่งลูกจ้างชัวคราว
This commit is contained in:
parent
137748408f
commit
8d87ba0317
6 changed files with 43 additions and 2875 deletions
|
|
@ -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[];
|
||||
|
||||
|
|
|
|||
|
|
@ -24,7 +24,9 @@ export class ProfileInsignia extends EntityBase {
|
|||
profileEmployeeId: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ปีที่ยื่นขอ",
|
||||
default: null,
|
||||
})
|
||||
year: number;
|
||||
|
||||
|
|
|
|||
|
|
@ -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 })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue