Commit 7a18134d8ac23093f8b3046b09e6cfb6930fdf5f
1 parent
246a51dc6f
Exists in
master
and in
6 other branches
添加是否发放母子保健手册
Showing 2 changed files with 11 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java
View file @
7a18134
| ... | ... | @@ -436,6 +436,7 @@ |
| 436 | 436 | else if (patients.getType() == 3) { |
| 437 | 437 | result.setcDueWeek("已分娩"); |
| 438 | 438 | } |
| 439 | + result.setSendCareMan(patients.getSendCareMan()); | |
| 439 | 440 | result.setAge(DateUtil.getAge(patients.getBirth()) + "岁"); |
| 440 | 441 | result.setName(patients.getUsername()); |
| 441 | 442 | result.setDueDate(DateUtil.getyyyy_MM_dd(patients.getDueDate())); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientSerResult.java
View file @
7a18134
| ... | ... | @@ -31,7 +31,6 @@ |
| 31 | 31 | /** |
| 32 | 32 | * 儿童名称 |
| 33 | 33 | */ |
| 34 | - | |
| 35 | 34 | private String babyName; |
| 36 | 35 | /** |
| 37 | 36 | * 性别 |
| ... | ... | @@ -96,7 +95,6 @@ |
| 96 | 95 | * 开通医生名称 |
| 97 | 96 | */ |
| 98 | 97 | private String createUserStr; |
| 99 | - | |
| 100 | 98 | /** |
| 101 | 99 | * 服务状态(1-开通、2-退订、3-过期、4-暂停) |
| 102 | 100 | */ |
| ... | ... | @@ -111,7 +109,8 @@ |
| 111 | 109 | */ |
| 112 | 110 | private Integer status; |
| 113 | 111 | private String statusStr; |
| 114 | - | |
| 112 | + //是否发放母子保健手册 | |
| 113 | + private String sendCareMan; | |
| 115 | 114 | /** |
| 116 | 115 | * 退款时间 |
| 117 | 116 | */ |
| ... | ... | @@ -120,6 +119,14 @@ |
| 120 | 119 | * 退款人 |
| 121 | 120 | */ |
| 122 | 121 | private String backUser; |
| 122 | + | |
| 123 | + public String getSendCareMan() { | |
| 124 | + return sendCareMan; | |
| 125 | + } | |
| 126 | + | |
| 127 | + public void setSendCareMan(String sendCareMan) { | |
| 128 | + this.sendCareMan = sendCareMan; | |
| 129 | + } | |
| 123 | 130 | |
| 124 | 131 | public String getSex() { |
| 125 | 132 | return sex; |