2023-08-08 00:22:26 +07:00
|
|
|
interface ResponseData {
|
|
|
|
|
education: string;
|
|
|
|
|
idCard: string;
|
|
|
|
|
name: string;
|
2023-08-09 16:10:02 +07:00
|
|
|
personalId: string;
|
2023-08-08 00:22:26 +07:00
|
|
|
selectStatus: boolean;
|
|
|
|
|
sequence: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ResponseOrganiz {
|
|
|
|
|
firstName: string;
|
|
|
|
|
idCard: string;
|
|
|
|
|
lastName: string;
|
|
|
|
|
name: string;
|
|
|
|
|
position: string;
|
|
|
|
|
prefixId: string;
|
|
|
|
|
profileId: string;
|
|
|
|
|
unit: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ResponseCopyOrder {
|
|
|
|
|
emailChannel: boolean;
|
|
|
|
|
idCard: string;
|
|
|
|
|
inboxChannel: boolean;
|
|
|
|
|
name: string;
|
|
|
|
|
personalId: string;
|
|
|
|
|
position: string;
|
|
|
|
|
selectStatus: boolean;
|
|
|
|
|
sequence: number;
|
|
|
|
|
unit: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface DataCopyOrder {
|
|
|
|
|
personalId: string;
|
|
|
|
|
name: string;
|
|
|
|
|
idCard: string;
|
|
|
|
|
position: string;
|
|
|
|
|
unit: string;
|
|
|
|
|
send: string;
|
|
|
|
|
mutiselect: number[];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { ResponseData, ResponseOrganiz, ResponseCopyOrder, DataCopyOrder };
|