crud profile discip,duty,nopaid,other
This commit is contained in:
parent
1d48bb06ee
commit
13fc7945e5
9 changed files with 706 additions and 5 deletions
|
|
@ -73,3 +73,32 @@ export class ProfileDiscipline extends EntityBase {
|
|||
@JoinColumn({ name: "profileId" })
|
||||
profile: Profile;
|
||||
}
|
||||
|
||||
export class CreateProfileDiscipline {
|
||||
|
||||
@Column()
|
||||
date: Date | null;
|
||||
|
||||
@Column()
|
||||
profileId: string;
|
||||
|
||||
@Column()
|
||||
isActive: boolean | null;
|
||||
|
||||
@Column()
|
||||
level: string | null;
|
||||
|
||||
@Column()
|
||||
detail: string | null;
|
||||
|
||||
@Column()
|
||||
refCommandDate: Date | null;
|
||||
|
||||
@Column()
|
||||
refCommandNo: string | null;
|
||||
|
||||
@Column()
|
||||
unStigma: string | null;
|
||||
}
|
||||
|
||||
export type UpdateProfileDiscipline = Partial<CreateProfileDiscipline>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue