| | |
| | | } |
| | | |
| | | @ApiOperation(value = "危化品使用记录导出") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "startTime", dataType = "string", required = false, value = "开始时间,格式xxxx-xx-xx 00:00:00"), |
| | | @ApiImplicitParam(paramType = "query", name = "endTime", dataType = "string", required = false, value = "结束时间,格式xxxx-xx-xx 23:59:59") |
| | | }) |
| | | @GetMapping("/importBaiscUse") |
| | | public void ImportBasicUse(HttpServletResponse response, String startTime, String endTime) throws IOException { |
| | | statisticService.importBaiscUse(response,startTime,endTime); |
| | | public void ImportBasicUse(HttpServletResponse response,HazmatUseStatisticDTO useStatisticDTO) throws IOException { |
| | | statisticService.importBaiscUse(response,useStatisticDTO); |
| | | } |
| | | |
| | | } |