step2 ยังไม่เสร็จ ,step 3 เสร็จแล้ว ออกคำสั่ง
This commit is contained in:
parent
c613d3743e
commit
e650e992aa
8 changed files with 1127 additions and 646 deletions
7
src/modules/05_placement/interface/request/Order.ts
Normal file
7
src/modules/05_placement/interface/request/Order.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
interface RequestCopyOrder {
|
||||
personalId: string;
|
||||
emailChannel: boolean;
|
||||
inboxChannel: boolean;
|
||||
}
|
||||
|
||||
export type { RequestCopyOrder };
|
||||
43
src/modules/05_placement/interface/response/Order.ts
Normal file
43
src/modules/05_placement/interface/response/Order.ts
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue