fixing แต่งตั้ง เลื่อน ย้าย
This commit is contained in:
parent
7a394bce3a
commit
ee9f6f594e
5 changed files with 167 additions and 125 deletions
|
|
@ -1,61 +1,61 @@
|
|||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
citizenId: string;
|
||||
prefixId?: string;
|
||||
firstname?: string;
|
||||
lastname?: string;
|
||||
}
|
||||
|
||||
interface UserData {
|
||||
|
|
@ -72,10 +72,24 @@ interface UserData {
|
|||
birthday: string;
|
||||
}
|
||||
|
||||
interface UserDataNew {
|
||||
id: 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
|
||||
citizenId: string;
|
||||
profileId: string;
|
||||
prefix: string;
|
||||
firstname: string;
|
||||
|
|
@ -90,7 +104,6 @@ interface ResponseData {
|
|||
reason: string;
|
||||
positionDate: Date;
|
||||
avatar: string;
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -129,7 +142,7 @@ export type {
|
|||
orgFilter,
|
||||
appointmentData,
|
||||
UserData,
|
||||
UserDataNew,
|
||||
ResponseData,
|
||||
DataProfile
|
||||
|
||||
}
|
||||
DataProfile,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue