Commit 24417d1418a6667302154a8e73a8cc42664c668d

Authored by liquanyu
1 parent 4adcb95560
Exists in master and in 1 other branch dev

妇女建档添加字段

Showing 2 changed files with 12 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ResidentsArchiveFacade.java View file @ 24417d1
... ... @@ -698,6 +698,7 @@
698 698  
699 699  
700 700 result.setPhoto(model.getPhoto());
  701 + result.setMilitary((model.getMilitary() == null || model.getMilitary() == 0) ? "否" : "是");
701 702 return result;
702 703 }
703 704  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/ResidentsArchiveResult.java View file @ 24417d1
... ... @@ -160,6 +160,17 @@
160 160 //身份证照片
161 161 private String photo;
162 162  
  163 + // 是否军嫂
  164 + private String military;
  165 +
  166 + public String getMilitary() {
  167 + return military;
  168 + }
  169 +
  170 + public void setMilitary(String military) {
  171 + this.military = military;
  172 + }
  173 +
163 174 public String getSpouseSex() {
164 175 return spouseSex;
165 176 }