44 lines
817 B
TypeScript
44 lines
817 B
TypeScript
interface ResponseData {
|
|
education: string;
|
|
idCard: string;
|
|
name: string;
|
|
personalId: string;
|
|
selectStatus: boolean;
|
|
sequence: number;
|
|
refRecordId: string
|
|
}
|
|
|
|
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 };
|