no message

This commit is contained in:
Kittapath 2024-04-17 17:31:07 +07:00
parent 5f5942089a
commit d9c98f4f25
7 changed files with 169 additions and 56 deletions

View file

@ -22,6 +22,13 @@ export class DevelopmentHistory extends EntityBase {
})
root: string;
@Column({
nullable: true,
comment: "ชื่อหน่วยงานที่สังกัด",
default: null,
})
org: string;
@Column({
nullable: true,
comment: "ชื่อย่อหน่วยงาน",

View file

@ -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;