人口基本信息- 增加了人口查询跳转页面

人口基本信息- 增加了creator_area1字段(创建人所在街道)
人口基本信息- 增加了查看人员卡片按钮页面跳转
This commit is contained in:
java_cuibaocheng@163.com 2023-11-26 21:54:49 +08:00
parent 7a300e0aca
commit 55504f5198

View File

@ -97,7 +97,10 @@ public class PopulationInfoServiceImpl extends AbstractService implements IPopul
public PopulationInfoAreaDTO getCreatorArea(String creator) { public PopulationInfoAreaDTO getCreatorArea(String creator) {
PopulationInfoAreaDTO dto = populationInfoDao.getCreatorArea(creator); PopulationInfoAreaDTO dto = populationInfoDao.getCreatorArea(creator);
if (dto == null) { if (dto == null) {
return new PopulationInfoAreaDTO(); // 如果没有 , 默认归属到稀土路街道
PopulationInfoAreaDTO dto1 = new PopulationInfoAreaDTO();
dto1.setAreaName("稀土路街道");
dto1.setAreaId("7ed23f06-566d-43b7-acd9-4f0b5db08974");
} }
return dto; return dto;
} }