fix: add note to create interface

This commit is contained in:
Methapon2001 2024-03-18 15:11:17 +07:00
parent 7d862c076f
commit 7bc2915788
2 changed files with 6 additions and 0 deletions

View file

@ -234,6 +234,9 @@ export class CreateProfileEducation {
@Column()
isEducation: boolean | null;
@Column()
note: string | null;
}
export type UpdateProfileEducation = Partial<CreateProfileEducation>;

View file

@ -180,6 +180,9 @@ export class CreateProfileInsignia {
@Column()
refCommandNo: string | null;
@Column()
note: string | null;
}
export type UpdateProfileInsignia = Partial<CreateProfileInsignia>;