fix: แก้ type Update ให้รับ null ได้
This commit is contained in:
parent
fae2ee80b1
commit
323d95813b
8 changed files with 75 additions and 75 deletions
|
|
@ -90,11 +90,11 @@ export class CreateProfileDiscipline {
|
|||
|
||||
export type UpdateProfileDiscipline = {
|
||||
date?: Date | null;
|
||||
profileId: string;
|
||||
isActive: boolean | null;
|
||||
level: string | null;
|
||||
detail: string | null;
|
||||
profileId?: string;
|
||||
isActive?: boolean | null;
|
||||
level?: string | null;
|
||||
detail?: string | null;
|
||||
refCommandDate?: Date | null;
|
||||
refCommandNo: string | null;
|
||||
unStigma: string | null;
|
||||
refCommandNo?: string | null;
|
||||
unStigma?: string | null;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue