| | |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.servlet.ModelAndView; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | /** |
| | | * @author: LiuS |
| | |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | @ApiOperation(value = "设备效率报表-利用率列表导出", notes = "设备效率报表-利用率列表导出") |
| | | @RequestMapping(value = "/exportEfficiencyXls") |
| | | public ModelAndView exportEfficiencyXls(HttpServletRequest request, MdcEfficiencyReportQueryVo vo) { |
| | | return mdcEfficiencyReportService.exportEfficiencyXls(vo); |
| | | } |
| | | |
| | | @AutoLog(value = "设备效率报表-开动率列表查询") |
| | | @ApiOperation(value = "设备效率报表-开动率列表查询", notes = "设备效率报表-开动率列表查询") |
| | | @GetMapping("/efficiencyPOList") |