Commit b1e6becd5b6b3b9f980566ece9821a73ef86a2d4

Authored by hujiaqi
1 parent a5ddd042f0

返回值添加了一个居住地

Showing 1 changed file with 15 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/ChildbirthManagerQueryModel.java View file @ b1e6bec
... ... @@ -91,6 +91,13 @@
91 91 */
92 92 private String phone;
93 93  
  94 + /**
  95 + * @auther HuJiaqi
  96 + * @createTime 2016年12月22日 11时25分
  97 + * @discription 居住地
  98 + */
  99 + private String address;
  100 +
94 101 // 上面是一般查询,下面的是自定义查询
95 102  
96 103 // 基本信息开始
... ... @@ -822,6 +829,14 @@
822 829  
823 830 public void setFmHospital(String fmHospital) {
824 831 this.fmHospital = fmHospital;
  832 + }
  833 +
  834 + public String getAddress() {
  835 + return address;
  836 + }
  837 +
  838 + public void setAddress(String address) {
  839 + this.address = address;
825 840 }
826 841 }