Commit 2695f82cb14c8e9f1cfab311945dfea22f58da08

Authored by [wangbo]
1 parent 9873b031fc

妇女建档 默认婚检为0

Showing 1 changed file with 14 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/ResidentsArchiveAddRequest.java View file @ 2695f82
... ... @@ -109,6 +109,10 @@
109 109 //建档日期
110 110 private String buildDay;
111 111  
  112 +
  113 + //是否婚检 0 未婚检 1. 已婚检
  114 + private String checkup;
  115 +
112 116 /***********荣成新增男性建档字段**********/
113 117 private String isOrNotrdl;//是否进食肉、蛋类(0:否;1:是;默认为1)
114 118 private String isOrNotSc;//是否厌食蔬菜(0:否;1:是;默认为0)
... ... @@ -185,6 +189,8 @@
185 189 model.setAreaRegisterId(areaRegisterId);
186 190 model.setStreetRegisterId(streetRegisterId);
187 191 model.setAddressRegister(addressRegister);
  192 + //默认为为婚检
  193 + model.setCheckup("0");
188 194  
189 195 if (pastHistory != null) {
190 196 model.setPastHistory(JsonUtil.obj2JsonString(pastHistory));
... ... @@ -241,6 +247,14 @@
241 247 //追访时间默认为当前建档时间
242 248 model.setFollowupTime(new Date());
243 249 return model;
  250 + }
  251 +
  252 + public String getCheckup() {
  253 + return checkup;
  254 + }
  255 +
  256 + public void setCheckup(String checkup) {
  257 + this.checkup = checkup;
244 258 }
245 259  
246 260 public String getSpouseName() {