自定义报表优化处理

This commit is contained in:
2023-10-23 16:30:57 +08:00
parent a2ed98ca86
commit 6c6f648ca8
13 changed files with 224 additions and 75 deletions

View File

@@ -253,4 +253,18 @@ public class CustomReportController extends BaseController {
}
/**
* 获取报表台账模板树
* @author cdf
* @date 2023/10/11
*/
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@GetMapping("/terminalChooseTree")
@ApiOperation("获取报表台账模板树")
public HttpResult<List<ReportTreeVO>> terminalChooseTree(){
String methodDescribe = getMethodDescribe("terminalChooseTree");
List<ReportTreeVO> res = customReportService.terminalChooseTree();
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, res, methodDescribe);
}
}