Commit f16e20e788c195bc68545c6241b4bfdb76cc01fe

Authored by liquanyu
1 parent a77f3d2988

update

Showing 2 changed files with 9 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ f16e20e
... ... @@ -4961,6 +4961,7 @@
4961 4961  
4962 4962 private ResidentsPageResult getResidentsPageResult(ResidentsArchiveModel model) {
4963 4963 ResidentsPageResult result = new ResidentsPageResult();
  4964 + result.setPhoto(model.getPhoto());
4964 4965 result.setUsername(model.getUsername());
4965 4966 result.setSex(getBasicConfig(model.getSex()));
4966 4967 result.setBirthday(DateUtil.getyyyy_MM_dd(model.getBirthday()));
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/ResidentsPageResult.java View file @ f16e20e
... ... @@ -120,7 +120,15 @@
120 120 private String xyzns;//现有子女数
121 121 private String znstzk;//子女身体状况(0:健康;1:疾病)
122 122 private String jtbm;//注明具体病名
  123 + private String photo;
123 124  
  125 + public String getPhoto() {
  126 + return photo;
  127 + }
  128 +
  129 + public void setPhoto(String photo) {
  130 + this.photo = photo;
  131 + }
124 132  
125 133 public String getIsOrNotrdl() {
126 134 return isOrNotrdl;