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 { 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 } }