You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

4 years ago
declare namespace Order {
interface submitEventDetail {
ID: string;
depart: string;
enterDate: string;
enterTime: string;
innerLocation: string;
name: string;
outerLocation: string;
phone: string;
reason: string;
orderType: string;
}
interface submitDetail {
ID: string;
depart: string;
reportDateTime: string;
innerLocation: string;
name: string;
outerLocation: string;
phone: string;
reason: string;
orderType: string;
}
interface OrderInfo {
orderType: "0" | "1"
reportDateTime: string
reportID: string
reportStatus: "0" | "1" | "2" | "3"
reviewer: string
}
interface OrderDetail extends Record<string, any> {
reportType: "0" | "1"
reportDateTime: string
reportID: string
reportStatus: "0" | "1" | "2" | "3"
reviewer: string
ID: string // 工号
depart: string
innerLocation: string
name: string
outerLocation: string
phone: string
reason: string
auditor?: string // 审核人
auditorDateTime?: string // 审核时间
qrCode: string
}
}