Merge branch 'dev/methapon' into develop
This commit is contained in:
commit
be29cbc465
4 changed files with 29 additions and 12 deletions
|
|
@ -70,6 +70,7 @@ export class ProfileEducationsController extends Controller {
|
||||||
educationLevelId: "string",
|
educationLevelId: "string",
|
||||||
positionPath: "string",
|
positionPath: "string",
|
||||||
positionPathId: "string",
|
positionPathId: "string",
|
||||||
|
note: "string",
|
||||||
isDate: true,
|
isDate: true,
|
||||||
isEducation: true,
|
isEducation: true,
|
||||||
},
|
},
|
||||||
|
|
@ -113,6 +114,7 @@ export class ProfileEducationsController extends Controller {
|
||||||
educationLevelId: "string",
|
educationLevelId: "string",
|
||||||
positionPath: "string",
|
positionPath: "string",
|
||||||
positionPathId: "string",
|
positionPathId: "string",
|
||||||
|
note: "string",
|
||||||
isDate: true,
|
isDate: true,
|
||||||
isEducation: true,
|
isEducation: true,
|
||||||
profileEducationId: "f6c693b4-1a9b-4fbe-95c5-ed4da50d35b6",
|
profileEducationId: "f6c693b4-1a9b-4fbe-95c5-ed4da50d35b6",
|
||||||
|
|
@ -142,6 +144,7 @@ export class ProfileEducationsController extends Controller {
|
||||||
educationLevelId: "string",
|
educationLevelId: "string",
|
||||||
positionPath: "string",
|
positionPath: "string",
|
||||||
positionPathId: "string",
|
positionPathId: "string",
|
||||||
|
note: "string",
|
||||||
isDate: true,
|
isDate: true,
|
||||||
isEducation: true,
|
isEducation: true,
|
||||||
profileEducationId: "f6c693b4-1a9b-4fbe-95c5-ed4da50d35b6",
|
profileEducationId: "f6c693b4-1a9b-4fbe-95c5-ed4da50d35b6",
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,7 @@ export class ProfileInsigniaController extends Controller {
|
||||||
volumeNo: "string",
|
volumeNo: "string",
|
||||||
refCommandDate: "2024-03-12T10:05:02.000Z",
|
refCommandDate: "2024-03-12T10:05:02.000Z",
|
||||||
refCommandNo: "string",
|
refCommandNo: "string",
|
||||||
|
note: "string",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
|
|
@ -96,6 +97,7 @@ export class ProfileInsigniaController extends Controller {
|
||||||
volumeNo: "volumeNo",
|
volumeNo: "volumeNo",
|
||||||
refCommandDate: "2024-03-12T10:05:44.000Z",
|
refCommandDate: "2024-03-12T10:05:44.000Z",
|
||||||
refCommandNo: "refCommandNo",
|
refCommandNo: "refCommandNo",
|
||||||
|
note: "string",
|
||||||
profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb",
|
profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
@ -120,6 +122,7 @@ export class ProfileInsigniaController extends Controller {
|
||||||
volumeNo: "string",
|
volumeNo: "string",
|
||||||
refCommandDate: "2024-03-12T10:05:02.000Z",
|
refCommandDate: "2024-03-12T10:05:02.000Z",
|
||||||
refCommandNo: "string",
|
refCommandNo: "string",
|
||||||
|
note: "string",
|
||||||
profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb",
|
profileInsigniaId: "c9d4dd52-25f5-491a-852d-28bfe00d66cb",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ export class ProfileEducation extends EntityBase {
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
comment: "ระดับศึกษา",
|
comment: "ระดับศึกษา",
|
||||||
type: "text", // ใช้ "text" แทน "string" เพื่อรองรับ long text
|
type: "text", // ใช้ "text" แทน "string" เพื่อรองรับ long text
|
||||||
default: null,
|
default: null,
|
||||||
})
|
})
|
||||||
educationLevel: string;
|
educationLevel: string;
|
||||||
|
|
@ -165,13 +165,15 @@ export class ProfileEducation extends EntityBase {
|
||||||
})
|
})
|
||||||
isEducation: boolean;
|
isEducation: boolean;
|
||||||
|
|
||||||
@OneToMany(() => ProfileEducationHistory, (profileEducationHistory) => profileEducationHistory.histories)
|
@OneToMany(
|
||||||
|
() => ProfileEducationHistory,
|
||||||
|
(profileEducationHistory) => profileEducationHistory.histories,
|
||||||
|
)
|
||||||
profileEducationHistories: ProfileEducationHistory[];
|
profileEducationHistories: ProfileEducationHistory[];
|
||||||
|
|
||||||
@ManyToOne(() => Profile, (profile) => profile.profileEducations)
|
@ManyToOne(() => Profile, (profile) => profile.profileEducations)
|
||||||
@JoinColumn({ name: "profileId" })
|
@JoinColumn({ name: "profileId" })
|
||||||
profile: Profile;
|
profile: Profile;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class CreateProfileEducation {
|
export class CreateProfileEducation {
|
||||||
|
|
@ -234,6 +236,9 @@ export class CreateProfileEducation {
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
isEducation: boolean | null;
|
isEducation: boolean | null;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
note: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UpdateProfileEducation = Partial<CreateProfileEducation>;
|
export type UpdateProfileEducation = Partial<CreateProfileEducation>;
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,10 @@ export class ProfileInsignia extends EntityBase {
|
||||||
})
|
})
|
||||||
note: string;
|
note: string;
|
||||||
|
|
||||||
@OneToMany(() => ProfileInsigniaHistory, (profileInsigniaHistory) => profileInsigniaHistory.histories)
|
@OneToMany(
|
||||||
|
() => ProfileInsigniaHistory,
|
||||||
|
(profileInsigniaHistory) => profileInsigniaHistory.histories,
|
||||||
|
)
|
||||||
profileInsigniaHistories: ProfileInsigniaHistory[];
|
profileInsigniaHistories: ProfileInsigniaHistory[];
|
||||||
|
|
||||||
@ManyToOne(() => Profile, (profile) => profile.profileInsignias)
|
@ManyToOne(() => Profile, (profile) => profile.profileInsignias)
|
||||||
|
|
@ -180,6 +183,9 @@ export class CreateProfileInsignia {
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
refCommandNo: string | null;
|
refCommandNo: string | null;
|
||||||
|
|
||||||
|
@Column()
|
||||||
|
note: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type UpdateProfileInsignia = Partial<CreateProfileInsignia>;
|
export type UpdateProfileInsignia = Partial<CreateProfileInsignia>;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue