Browse Source

类型

release
zxc 4 years ago
parent
commit
678b8ee8db
  1. 8
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/result/CollectListResultDTO.java

8
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/result/CollectListResultDTO.java

@ -33,7 +33,7 @@ public class CollectListResultDTO implements Serializable {
/**
* 房屋类型1:自有, 0:租住
*/
private Integer houseType;
private String houseType;
/**
* 居住人数
@ -45,7 +45,7 @@ public class CollectListResultDTO implements Serializable {
public CollectListResultDTO() {
this.houseHolderName = "";
this.address = "";
this.houseType = 0;
this.houseType = "0";
this.totalResi = 0;
this.list = new ArrayList<>();
}
@ -70,7 +70,7 @@ public class CollectListResultDTO implements Serializable {
/**
* 核酸检测次数
*/
private Integer heSuanCount;
private String heSuanCount;
/**
* 疫苗是否全程接种1全程接种2未全程接种3为接种
@ -81,7 +81,7 @@ public class CollectListResultDTO implements Serializable {
this.memberName = "";
this.memberIdNum = "";
this.memberMobile = "";
this.heSuanCount = 0;
this.heSuanCount = "0";
this.ymjz = 0;
}
}

Loading…
Cancel
Save