105 lines
No EOL
2 KiB
TypeScript
105 lines
No EOL
2 KiB
TypeScript
interface listAppointType {
|
|
personalId: string
|
|
citizenId: number
|
|
fullname: string
|
|
organizationName: string
|
|
orgName: string
|
|
organizationShortName: string
|
|
positionNumber: string
|
|
positionPath: string
|
|
status: string
|
|
createdAt: string
|
|
birthday: string
|
|
educationOld: string
|
|
organizationPositionOld: string
|
|
positionTypeOld: string
|
|
positionLevelOld: string
|
|
positionNumberOld: string
|
|
salary: number
|
|
positionDate: Date
|
|
}
|
|
|
|
interface resData {
|
|
id: string
|
|
citizenId: number
|
|
prefix: string
|
|
firstname: string
|
|
lastname: string
|
|
organizationName: string
|
|
organizationShortName: string
|
|
positionNumber: string
|
|
positionPath: string
|
|
status: string
|
|
createdAt: Date
|
|
dateOfBirth: Date
|
|
educationOld: string
|
|
organizationPositionOld: string
|
|
positionTypeOld: string
|
|
positionLevelOld: string
|
|
positionNumberOld: string
|
|
salary: number
|
|
positionDate: Date
|
|
}
|
|
interface orgFilter {
|
|
orgName: string
|
|
status: string
|
|
educationOld: string
|
|
organizationPositionOld: string
|
|
positionTypeOld: string
|
|
positionLevelOld: string
|
|
positionNumberOld: string
|
|
salary: number
|
|
positionDate: Date
|
|
}
|
|
interface appointmentData {
|
|
citizenId: string
|
|
prefixId?: string
|
|
firstname?: string
|
|
lastname?: string
|
|
}
|
|
|
|
interface UserData {
|
|
personalId: string;
|
|
citizenId: string;
|
|
fullname: string;
|
|
organizationName: string;
|
|
orgName: string;
|
|
organizationShortName: string;
|
|
positionNumber: string;
|
|
positionPath: string;
|
|
status: string;
|
|
createdAt: string;
|
|
birthday: string;
|
|
}
|
|
|
|
interface ResponseData {
|
|
data: {
|
|
result: {
|
|
citizenId: string
|
|
profileId: string;
|
|
prefix: string;
|
|
firstname: string;
|
|
lastname: string;
|
|
organizationPositionOld: string;
|
|
positionLevelOld: string;
|
|
positionTypeOld: string;
|
|
status: string;
|
|
educationOld: string;
|
|
positionNumberOld: string;
|
|
salary: number;
|
|
reason: string;
|
|
positionDate: Date;
|
|
avatar: string;
|
|
|
|
};
|
|
};
|
|
}
|
|
export type {
|
|
listAppointType,
|
|
resData,
|
|
orgFilter,
|
|
appointmentData,
|
|
UserData,
|
|
ResponseData
|
|
|
|
} |