| | |
| | | */ |
| | | @GetMapping("/exportInsOrderBaseInfo") |
| | | public JSONObject exportInspectionOrderBaseInfo(@RequestParam(name = "equipmentCode", required = true) String equipmentCode, |
| | | @RequestParam(name = "inspectionDate", required = true) String inspectionDate) { |
| | | @RequestParam(name = "inspectionDate", required = false) String inspectionDate) { |
| | | return eamInspectionOrderService.exportInspectionOrderBaseInfo(equipmentCode, inspectionDate); |
| | | } |
| | | |
| | |
| | | */ |
| | | @GetMapping("/exportInsOrderDetailList") |
| | | public JSONObject exportInspectionOrderDetailList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode, |
| | | @RequestParam(name = "inspectionDate", required = true) String inspectionDate) { |
| | | @RequestParam(name = "inspectionDate", required = false) String inspectionDate) { |
| | | return eamInspectionOrderService.exportInspectionOrderDetailList(equipmentCode, inspectionDate); |
| | | } |
| | | |
| | |
| | | */ |
| | | @GetMapping("/exportInsOrderDetailUserList") |
| | | public JSONObject exportInspectionOrderDetailUserList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode, |
| | | @RequestParam(name = "inspectionDate", required = true) String inspectionDate) { |
| | | @RequestParam(name = "inspectionDate", required = false) String inspectionDate) { |
| | | return eamInspectionOrderService.exportInspectionOrderDetailUserList(equipmentCode, inspectionDate); |
| | | } |
| | | |
| | |
| | | */ |
| | | @GetMapping("/exportWeekInsDetailList") |
| | | public JSONObject exportWeekInsDetailList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode, |
| | | @RequestParam(name = "inspectionDate", required = true) String inspectionDate) { |
| | | @RequestParam(name = "inspectionDate", required = false) String inspectionDate) { |
| | | return eamInspectionOrderService.exportWeekInsDetailList(equipmentCode, inspectionDate); |
| | | } |
| | | |
| | |
| | | */ |
| | | @GetMapping("/exportWeekInsOrderDetailUserList") |
| | | public JSONObject exportInspectionOrder(@RequestParam(name = "equipmentCode", required = true) String equipmentCode, |
| | | @RequestParam(name = "inspectionDate", required = true) String inspectionDate) { |
| | | @RequestParam(name = "inspectionDate", required = false) String inspectionDate) { |
| | | return eamInspectionOrderService.exportWeekInsOrderDetailUserList(equipmentCode, inspectionDate); |
| | | } |
| | | |