1.区域报告和监测点报告代码提交
2.终端管理部分代码提交
This commit is contained in:
@@ -202,8 +202,14 @@ public class ReportController extends BaseController {
|
||||
@ApiImplicitParam(name = "areaReportParam", value = "参数体", required = true)
|
||||
public void getAreaReport(@RequestBody @Validated AreaReportParam areaReportParam, HttpServletResponse response) throws Exception {
|
||||
reportService.getAreaReport(areaReportParam, response);
|
||||
|
||||
}
|
||||
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||
@PostMapping("/getPmsAreaReport")
|
||||
@ApiOperation("获取Pms区域报告")
|
||||
@ApiImplicitParam(name = "areaReportParam", value = "参数体", required = true)
|
||||
public void getPmsAreaReport(@RequestBody @Validated AreaReportParam areaReportParam, HttpServletResponse response) throws Exception {
|
||||
reportService.getPmsAreaReport(areaReportParam, response);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -56,4 +56,12 @@ public interface ReportService {
|
||||
void getAreaReport(AreaReportParam areaReportParam, HttpServletResponse response) throws Exception;
|
||||
|
||||
|
||||
/***
|
||||
* Pms获取区域报告
|
||||
* @author wr
|
||||
* @date 2023-03-07 10:16
|
||||
* @param areaReportParam
|
||||
* @param response
|
||||
*/
|
||||
void getPmsAreaReport(AreaReportParam areaReportParam, HttpServletResponse response) throws Exception;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user