feat: add entity field "note"
This commit is contained in:
parent
ce7f814061
commit
7f3e4dcc5f
2 changed files with 14 additions and 0 deletions
|
|
@ -136,6 +136,13 @@ export class ProfileEducation extends EntityBase {
|
||||||
})
|
})
|
||||||
positionPath: string;
|
positionPath: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "หมายเหตุ",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
note: string;
|
||||||
|
|
||||||
@Column({
|
@Column({
|
||||||
nullable: true,
|
nullable: true,
|
||||||
length: 40,
|
length: 40,
|
||||||
|
|
|
||||||
|
|
@ -120,6 +120,13 @@ export class ProfileInsignia extends EntityBase {
|
||||||
})
|
})
|
||||||
refCommandNo: string;
|
refCommandNo: string;
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
nullable: true,
|
||||||
|
comment: "หมายเหตุ",
|
||||||
|
default: null,
|
||||||
|
})
|
||||||
|
note: string;
|
||||||
|
|
||||||
@OneToMany(() => ProfileInsigniaHistory, (profileInsigniaHistory) => profileInsigniaHistory.histories)
|
@OneToMany(() => ProfileInsigniaHistory, (profileInsigniaHistory) => profileInsigniaHistory.histories)
|
||||||
profileInsigniaHistories: ProfileInsigniaHistory[];
|
profileInsigniaHistories: ProfileInsigniaHistory[];
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue