巡检分析 巡检设备概况 详情
正在显示
4 个修改的文件
包含
7 行增加
和
5 行删除
... | @@ -251,7 +251,7 @@ public class InspectionAnalysisController { | ... | @@ -251,7 +251,7 @@ public class InspectionAnalysisController { |
251 | @GetMapping("/getInspectionEquipOverview") | 251 | @GetMapping("/getInspectionEquipOverview") |
252 | public Result<InspectionEquipOverviewVO> getInspectionEquipOverview(String startDate, String endDate){ | 252 | public Result<InspectionEquipOverviewVO> getInspectionEquipOverview(String startDate, String endDate){ |
253 | Result<InspectionEquipOverviewVO> result = new Result<>(); | 253 | Result<InspectionEquipOverviewVO> result = new Result<>(); |
254 | InspectionEquipOverviewVO inspectionEquipOverviewVO = inspectionAnalysisService.getInspectionEquipOverviewNew(startDate,endDate); | 254 | InspectionEquipOverviewVO inspectionEquipOverviewVO = inspectionAnalysisService.getInspectionEquipOverview(startDate,endDate); |
255 | result.setSuccess(true); | 255 | result.setSuccess(true); |
256 | result.setResult(inspectionEquipOverviewVO); | 256 | result.setResult(inspectionEquipOverviewVO); |
257 | return result; | 257 | return result; |
... | @@ -259,15 +259,15 @@ public class InspectionAnalysisController { | ... | @@ -259,15 +259,15 @@ public class InspectionAnalysisController { |
259 | 259 | ||
260 | @ApiOperation(value = "巡检分析-巡检设备概况-详情", notes = "巡检分析-巡检设备概况-详情") | 260 | @ApiOperation(value = "巡检分析-巡检设备概况-详情", notes = "巡检分析-巡检设备概况-详情") |
261 | @GetMapping("/getInspectionEquipOverviewDetail") | 261 | @GetMapping("/getInspectionEquipOverviewDetail") |
262 | public Result<List<InspectionEquipIndicatorsDetailVO>> getInspectionEquipOverviewDetail(String departId,String startDate, String endDate){ | 262 | public Result<List<InspectionEquipOverviewVO>> getInspectionEquipOverviewDetail(String departId,String startDate, String endDate){ |
263 | Result<List<InspectionEquipIndicatorsDetailVO>> result = new Result<>(); | 263 | Result<List<InspectionEquipOverviewVO>> result = new Result<>(); |
264 | String departIds = departId; | 264 | String departIds = departId; |
265 | if(StringUtils.isEmpty(departId)){ | 265 | if(StringUtils.isEmpty(departId)){ |
266 | departIds = BaseContextHandler.getDeparts(); | 266 | departIds = BaseContextHandler.getDeparts(); |
267 | }else{ | 267 | }else{ |
268 | departIds = sysDepartService.getChildDepartId(departId); | 268 | departIds = sysDepartService.getChildDepartId(departId); |
269 | } | 269 | } |
270 | List<InspectionEquipIndicatorsDetailVO> dataList = inspectionAnalysisService.getInspectionEquipOverviewDetail(departIds,startDate,endDate); | 270 | List<InspectionEquipOverviewVO> dataList = inspectionAnalysisService.getInspectionEquipOverviewDetail(departIds,startDate,endDate); |
271 | result.setSuccess(true); | 271 | result.setSuccess(true); |
272 | result.setResult(dataList); | 272 | result.setResult(dataList); |
273 | return result; | 273 | return result; | ... | ... |
... | @@ -79,7 +79,7 @@ public interface IInspectionAnalysisService { | ... | @@ -79,7 +79,7 @@ public interface IInspectionAnalysisService { |
79 | * @param endDate | 79 | * @param endDate |
80 | * @return | 80 | * @return |
81 | */ | 81 | */ |
82 | List<InspectionEquipIndicatorsDetailVO> getInspectionEquipOverviewDetail(String departIds, String startDate, String endDate); | 82 | List<InspectionEquipOverviewVO> getInspectionEquipOverviewDetail(String departIds, String startDate, String endDate); |
83 | 83 | ||
84 | /*** | 84 | /*** |
85 | * 巡检分析-巡检任务异常项趋势 | 85 | * 巡检分析-巡检任务异常项趋势 | ... | ... |
此文件的差异被折叠,
点击展开。
... | @@ -29,4 +29,6 @@ public class InspectionEquipOverviewVO { | ... | @@ -29,4 +29,6 @@ public class InspectionEquipOverviewVO { |
29 | private Integer abnormalInspectionEquipCount; | 29 | private Integer abnormalInspectionEquipCount; |
30 | @ApiModelProperty(value = "异常项处理率") | 30 | @ApiModelProperty(value = "异常项处理率") |
31 | private String processedAbnormalRate; | 31 | private String processedAbnormalRate; |
32 | |||
33 | private String departName; | ||
32 | } | 34 | } | ... | ... |
-
请 注册 或 登录 后发表评论