| | |
| | | @ValueClassify("工时管理") |
| | | @ApiOperation(value = "导出原始工时") |
| | | @GetMapping("/exportOriginalHours") |
| | | public void exportOriginalHours(@RequestBody AuxiliaryOriginalHoursLookDto auxiliaryOriginalHoursLookDto,HttpServletResponse response) throws IOException { |
| | | auxiliaryOriginalHoursService.exportWorkingHours(auxiliaryOriginalHoursLookDto,response); |
| | | public void exportOriginalHours(@RequestParam("month") String month, @RequestParam("name") String name, @RequestParam("departLims") String departLims,HttpServletResponse response) throws IOException { |
| | | auxiliaryOriginalHoursService.exportWorkingHours(month,name,departLims,response); |
| | | } |
| | | } |