人口基本信息- 增加了人口查询跳转页面
人口基本信息- 增加了creator_area1字段(创建人所在街道) 人口基本信息- 增加了查看人员卡片按钮页面跳转
This commit is contained in:
parent
44694f71e9
commit
e77deee1a2
@ -0,0 +1,35 @@
|
|||||||
|
package com.cm.population.pojo.dtos.populationinfo;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.time.Period;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@ApiModel
|
||||||
|
public class PopulationInfoAreaDTO {
|
||||||
|
|
||||||
|
@ApiModelProperty(name = "areaId", value = "areaId")
|
||||||
|
private String areaId;
|
||||||
|
@ApiModelProperty(name = "areaName", value = "areaName")
|
||||||
|
private String areaName;
|
||||||
|
|
||||||
|
public String getAreaId() {
|
||||||
|
return areaId == null ? "" : areaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaId(String areaId) {
|
||||||
|
this.areaId = areaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAreaName() {
|
||||||
|
return areaName == null ? "" : areaName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAreaName(String areaName) {
|
||||||
|
this.areaName = areaName;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user