เพิ่มผู้บังคับบัญชา
This commit is contained in:
parent
474630a7ba
commit
ad08061836
5 changed files with 110 additions and 0 deletions
|
|
@ -44,15 +44,25 @@ export class ProfileGovernment extends EntityBase {
|
|||
default: null,
|
||||
})
|
||||
govAgePlus: number;
|
||||
|
||||
@Column({
|
||||
nullable: true,
|
||||
comment: "เหตุผลกรณีวันไม่ตรงกัน",
|
||||
length: 255,
|
||||
default: null,
|
||||
})
|
||||
reasonSameDate: string;
|
||||
}
|
||||
|
||||
export type CreateProfileGovernment = {
|
||||
profileId: string;
|
||||
dateAppoint?: Date | null;
|
||||
dateStart?: Date | null;
|
||||
reasonSameDate?: string | null;
|
||||
};
|
||||
|
||||
export type UpdateProfileGovernment = {
|
||||
dateAppoint?: Date | null;
|
||||
dateStart?: Date | null;
|
||||
reasonSameDate?: string | null;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue