no message

This commit is contained in:
STW_TTTY\stwtt 2024-05-03 13:59:28 +07:00
parent 512d7703b2
commit 922af92452
4 changed files with 223 additions and 177 deletions

View file

@ -94,12 +94,42 @@ interface ResponseData {
};
};
}
interface DataProfile {
child1: string | null;
child1ShortName: string | null;
child2: string | null;
child2ShortName: string | null;
child3: string | null;
child3ShortName: string | null;
child4: string | null;
child4ShortName: string | null;
createdAt: string | Date;
dateEnd: string | Date;
dateStart: string | Date;
firstName: string;
id: string;
isActive: boolean;
lastName: string;
organization: string;
organizationPositionOld: string;
posLevelName: string;
posMasterNo: number | null;
posTypeName: string;
position: string;
prefix: string;
profileId: string;
reason: string;
root: string;
rootShortName: string | null;
status: string;
}
export type {
listAppointType,
resData,
orgFilter,
appointmentData,
UserData,
ResponseData
ResponseData,
DataProfile
}