no message
This commit is contained in:
parent
5f5942089a
commit
d9c98f4f25
7 changed files with 169 additions and 56 deletions
|
|
@ -22,6 +22,13 @@ export class DevelopmentHistory extends EntityBase {
|
|||
})
|
||||
root: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อหน่วยงานที่สังกัด",
|
||||
default: null,
|
||||
})
|
||||
org: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อย่อหน่วยงาน",
|
||||
|
|
|
|||
|
|
@ -19,6 +19,13 @@ export class DevelopmentScholarship extends EntityBase {
|
|||
})
|
||||
root: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อหน่วยงานที่สังกัด",
|
||||
default: null,
|
||||
})
|
||||
org: string;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "ชื่อย่อหน่วยงาน",
|
||||
|
|
@ -529,6 +536,7 @@ export class DevelopmentScholarship extends EntityBase {
|
|||
export class CreateDevelopmentScholarship {
|
||||
rootId: string | null;
|
||||
root: string | null;
|
||||
org: string | null;
|
||||
orgRootShortName: string | null;
|
||||
orgRevisionId: string | null;
|
||||
profileId: string | null;
|
||||
|
|
@ -588,6 +596,7 @@ export class CreateDevelopmentScholarship {
|
|||
export class UpdateDevelopmentScholarship {
|
||||
rootId: string | null;
|
||||
root: string | null;
|
||||
org: string | null;
|
||||
orgRootShortName: string | null;
|
||||
orgRevisionId: string | null;
|
||||
profileId: string | null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue