| | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.shiro.SecurityUtils; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.common.aspect.annotation.AutoLog; |
| | | import org.jeecg.common.system.vo.LoginUser; |
| | | import org.jeecg.modules.mdc.dto.ComparativeAnalysisDto; |
| | | import org.jeecg.modules.mdc.dto.DayUtilizationRateDto; |
| | |
| | | import org.jeecg.modules.mdc.vo.*; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | // return Result.OK(result);Equipment utilization distribution of each team |
| | | // } |
| | | |
| | | // @ApiOperation(value = "设备效率报表-配送小组维度各班组月设备利用分布", notes = "设备效率报表-配送小组维度各班组月设备利用分布") |
| | | // @GetMapping("/teamEquipmentEfficiencyAnalyze") |
| | | // public Result teamEquipmentEfficiencyAnalyze(TeamEquEffVo teamEquEffVo) { |
| | | // Map<String, Object> result = mdcEfficiencyReportService.teamEquipmentEfficiencyAnalyze(teamEquEffVo); |
| | | // return Result.OK(result); |
| | | // } |
| | | @ApiOperation(value = "设备效率报表-配送小组维度各班组月设备利用分布", notes = "设备效率报表-配送小组维度各班组月设备利用分布") |
| | | @GetMapping("/teamEquipmentEfficiencyAnalyze") |
| | | public Result<?> teamEquipmentEfficiencyAnalyze(EquEffVo equEffVo) { |
| | | Map<String, Object> result = mdcEfficiencyReportService.teamEquipmentEfficiencyAnalyze(equEffVo); |
| | | return Result.OK(result); |
| | | } |
| | | |
| | | @ApiOperation(value = "设备效率报表-设备维度各班组月设备利用分布", notes = "设备效率报表-设备维度各班组月设备利用分布") |
| | | @GetMapping("/equipmentEfficiencyAnalyze") |
| | | public Result<?> equipmentEfficiencyAnalyze(TeamEquEffVo teamEquEffVo) { |
| | | Map<String, Object> result = mdcEfficiencyReportService.teamEquipmentEfficiencyAnalyze(teamEquEffVo); |
| | | public Result<?> equipmentEfficiencyAnalyze(EquEffVo equEffVo) { |
| | | Map<String, Object> result = mdcEfficiencyReportService.equipmentEfficiencyAnalyze(equEffVo); |
| | | return Result.OK(result); |
| | | } |
| | | |