Commit 62c8ba04 authored by tianyiming's avatar tianyiming

添加监管列表查询的注释

parent b69cd050
......@@ -3349,6 +3349,9 @@ public class JGDPStatisticsServiceImpl {
filterParamDto.setBeginDate(dpFilterParamForDetailDto.getTimeSearchOne().getBeginDate());
filterParamDto.setEndDate(dpFilterParamForDetailDto.getTimeSearchOne().getEndDate());
}
// 判断是否根据具体的业务类型筛选,如果是则需要将treeValue置空,满足对应xml中的动态union all
// 当BusinessTypeCode不为空,则查对应BusinessTypeCode具体的业务,此时需要将treeValue置空,取消xml中的union all 拼接
// 当BusinessTypeCode为空,则查询对应treeValue下所有业务,此时不能将treeValue置空,需要使用xml中的union all 拼接各个业务查询
String treeValue = dpFilterParamForDetailDto.getBusinessTypeCode() != "" ? null : dpFilterParamForDetailDto.getTreeValue();
if (JgBusinessTypeEnum.SGGZ.getCode().equals(dpFilterParamForDetailDto.getTreeValue())) {
maps = jgStatisticsMapper.countBizFinishedNumForDPListSGGZ(page, orgCode, filterParamDto, treeValue);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment