step2 ยังไม่เสร็จ ,step 3 เสร็จแล้ว ออกคำสั่ง

This commit is contained in:
Thanit Konmek 2023-08-08 00:22:26 +07:00
parent c613d3743e
commit e650e992aa
8 changed files with 1127 additions and 646 deletions

View file

@ -0,0 +1,7 @@
interface RequestCopyOrder {
personalId: string;
emailChannel: boolean;
inboxChannel: boolean;
}
export type { RequestCopyOrder };

View file

@ -0,0 +1,43 @@
interface ResponseData {
education: string;
idCard: string;
name: string;
personId: string;
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 };