|
|
@ -9,6 +9,7 @@ import com.epmet.commons.tools.exception.EpmetErrorCode; |
|
|
|
import com.epmet.commons.tools.exception.EpmetException; |
|
|
|
import com.epmet.commons.tools.exception.ExceptionUtils; |
|
|
|
import com.epmet.commons.tools.page.PageData; |
|
|
|
import com.epmet.commons.tools.processor.MaskProcessor; |
|
|
|
import com.epmet.commons.tools.redis.common.CustomerIcHouseRedis; |
|
|
|
import com.epmet.commons.tools.redis.common.CustomerOrgRedis; |
|
|
|
import com.epmet.commons.tools.redis.common.CustomerStaffRedis; |
|
|
@ -670,7 +671,7 @@ public class CoverageServiceImpl implements CoverageService { |
|
|
|
|
|
|
|
return new CoverageAnalisisDataListResultDTO( |
|
|
|
re.getId(), categoryKey, isPage ? categoryDict.getCategoryName() : null, placeType, |
|
|
|
re.getName().concat(StrConstant.BRACKET_LEFT).concat(re.getIdCard()).concat(StrConstant.BRACKET_RIGNT), |
|
|
|
re.getName().concat(StrConstant.BRACKET_LEFT).concat(MaskProcessor.maskIdCard(re.getIdCard())).concat(StrConstant.BRACKET_RIGNT), |
|
|
|
coordinates[1], coordinates[0]); |
|
|
|
|
|
|
|
}).collect(Collectors.toList()); |
|
|
@ -684,7 +685,7 @@ public class CoverageServiceImpl implements CoverageService { |
|
|
|
|
|
|
|
return new CoverageAnalisisDataListResultDTO( |
|
|
|
re.getId(), categoryKey, isPage ? categoryDict.getCategoryName() : null, placeType, |
|
|
|
re.getName().concat(StrConstant.BRACKET_LEFT).concat(re.getIdNum()).concat(StrConstant.BRACKET_RIGNT), |
|
|
|
re.getName().concat(StrConstant.BRACKET_LEFT).concat(MaskProcessor.maskIdCard(re.getIdNum())).concat(StrConstant.BRACKET_RIGNT), |
|
|
|
coordinates[1], coordinates[0]); |
|
|
|
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|