hrms-mgt/src/modules/06_retirement/interface/response/exitInterview.ts

41 lines
875 B
TypeScript
Raw Normal View History

2023-08-24 17:06:18 +07:00
interface ResponseData {
adjust: string[];
adjustOther: string;
createdAt: Date;
exitFactor: string[];
exitFactorOther: string;
futureWork: boolean;
futureWorkReason: string;
havejob: boolean;
havejobReason: string;
id: string;
lastUpdatedAt: Date;
notExitFactor: string;
realReason: string;
reasonWork: string[];
reasonWorkOther: string;
suggestFriends: boolean;
suggestFriendsReason: string;
suggestion: string;
timeThink: string[];
}
interface ResponseItems {
createdAt: Date;
futureWork: boolean;
futureWorkReason: string;
havejob: boolean;
havejobReason: string;
id: string;
lastUpdatedAt: Date;
notExitFactor: string;
realReason: string;
suggestFriends: boolean;
suggestFriendsReason: string;
suggestion: string;
status: string;
datetext: string | null;
}
export type { ResponseData, ResponseItems };