|
@@ -4,8 +4,7 @@ import lombok.RequiredArgsConstructor;
|
|
|
import jakarta.servlet.http.HttpServletResponse;
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
|
-import org.eco.als.domain.vo.AirConfigurationImportVo;
|
|
|
-import org.eco.als.domain.vo.AirConfigurationVo;
|
|
|
+import org.eco.als.domain.vo.*;
|
|
|
import org.eco.als.listener.AirConfigurationImportListener;
|
|
|
import org.eco.als.listener.FaultStatisticsImportListener;
|
|
|
import org.eco.common.excel.core.ExcelResult;
|
|
@@ -20,8 +19,6 @@ import org.eco.common.web.annotation.RepeatSubmit;
|
|
|
import org.eco.common.excel.utils.ExcelUtil;
|
|
|
import org.eco.common.web.core.BaseController;
|
|
|
import jakarta.annotation.Resource;
|
|
|
-import org.eco.als.domain.vo.FaultStatisticsImportVo;
|
|
|
-import org.eco.als.domain.vo.FaultStatisticsVo;
|
|
|
import org.eco.als.domain.bo.FaultStatisticsBo;
|
|
|
import org.eco.als.service.IFaultStatisticsService;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
@@ -62,6 +59,14 @@ public class FaultStatisticsController extends BaseController {
|
|
|
return CommonResult.success(faultStatisticsService.selectList(faultStatisticsBo));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 外部查询故障统计列表
|
|
|
+ */
|
|
|
+ @GetMapping("/outsideListAll")
|
|
|
+ public CommonResult<List<FaultStatisticsWbVo>> outsideListAll(FaultStatisticsBo faultStatisticsBo) {
|
|
|
+ return CommonResult.success(faultStatisticsService.outsideListAll(faultStatisticsBo));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 导出故障统计列表
|
|
|
*/
|