自定义报表初步处理
This commit is contained in:
@@ -235,9 +235,22 @@ public class CustomReportController extends BaseController {
|
||||
public void getCustomReport(@RequestBody ReportSearchParam reportSearchParam, HttpServletResponse response) {
|
||||
String methodDescribe = getMethodDescribe("getCustomReport");
|
||||
customReportService.getCustomReport(reportSearchParam,response);
|
||||
// return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, res, methodDescribe);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取报表指标是否合格模板树
|
||||
* @author cdf
|
||||
* @date 2023/10/11
|
||||
*/
|
||||
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
|
||||
@GetMapping("/targetLimitChooseTree")
|
||||
@ApiOperation("获取报表指标是否合格模板树")
|
||||
public HttpResult<List<ReportTreeVO>> targetLimitChooseTree(){
|
||||
String methodDescribe = getMethodDescribe("targetLimitChooseTree");
|
||||
List<ReportTreeVO> res = customReportService.targetLimitChooseTree();
|
||||
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, res, methodDescribe);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user