List Exit interview UI
This commit is contained in:
parent
6e7d5e6031
commit
d562d12cea
4 changed files with 238 additions and 187 deletions
|
|
@ -0,0 +1,40 @@
|
|||
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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue