| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "查询绑定了但是没有配置的检验项") |
| | | @GetMapping("/getNoConfigProduct") |
| | | public Result<?> getNoConfigProduct(Integer deviceId) { |
| | | return Result.success(dataConfigService.getNoConfigProduct(deviceId)); |
| | | } |
| | | |
| | | @ApiOperation(value = "左侧设备树形栏") |
| | | @GetMapping("/treeDevice") |
| | |
| | | |
| | | @ApiOperation(value = "设备档案导出") |
| | | @GetMapping("/exportDeviceFile") |
| | | public void exportDeviceFile(@RequestParam Integer deviceId, HttpServletResponse response) throws Exception { |
| | | public void exportDeviceFile(@RequestParam Integer deviceId, HttpServletResponse response){ |
| | | deviceService.exportDeviceFile(deviceId,response); |
| | | } |
| | | |
| | | @ApiOperation(value = "仪器设备一览表导出") |
| | | @GetMapping("/exportEquipmentDetails") |
| | | public void exportEquipmentDetails(HttpServletResponse response) throws Exception { |
| | | public void exportEquipmentDetails(HttpServletResponse response){ |
| | | deviceService.exportEquipmentDetails(response); |
| | | } |
| | | } |