Commit 6f5323053bff714cce187d38cb41b64ee356d613
1 parent
b302143162
Exists in
master
and in
6 other branches
服务
Showing 2 changed files with 47 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceFacade.java
View file @
6f53230
| ... | ... | @@ -703,6 +703,14 @@ |
| 703 | 703 | result.setSerCode(ps.getSerCode()); |
| 704 | 704 | result.setCreateUser(ps.getCreateUser()); |
| 705 | 705 | result.setUpdateDate(DateUtil.getyyyy_MM_dd(ps.getUpdateDate())); |
| 706 | + | |
| 707 | + | |
| 708 | + result.setDevice(ps.getDevice()); | |
| 709 | + result.setDeviceCon(ps.getDeviceCon()); | |
| 710 | + result.setServiceWeek(ps.getServiceWeek()); | |
| 711 | + result.setDoctorWeek(ps.getDoctorWeek()); | |
| 712 | + | |
| 713 | + | |
| 706 | 714 | if (StringUtils.isNotEmpty(ps.getSerDoct())) { |
| 707 | 715 | try { |
| 708 | 716 | Users users = usersService.getUsers(Integer.parseInt(ps.getSerDoct())); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PatientSerResult.java
View file @
6f53230
| ... | ... | @@ -118,6 +118,45 @@ |
| 118 | 118 | */ |
| 119 | 119 | private String backUser; |
| 120 | 120 | |
| 121 | + private Integer device; | |
| 122 | + private Integer deviceCon;//'设备条件'; | |
| 123 | + | |
| 124 | + private Integer doctorWeek;//'医生购买周数'; | |
| 125 | + | |
| 126 | + private Integer serviceWeek;//'服务购买周数'; | |
| 127 | + | |
| 128 | + public Integer getDevice() { | |
| 129 | + return device; | |
| 130 | + } | |
| 131 | + | |
| 132 | + public void setDevice(Integer device) { | |
| 133 | + this.device = device; | |
| 134 | + } | |
| 135 | + | |
| 136 | + public Integer getDeviceCon() { | |
| 137 | + return deviceCon; | |
| 138 | + } | |
| 139 | + | |
| 140 | + public void setDeviceCon(Integer deviceCon) { | |
| 141 | + this.deviceCon = deviceCon; | |
| 142 | + } | |
| 143 | + | |
| 144 | + public Integer getDoctorWeek() { | |
| 145 | + return doctorWeek; | |
| 146 | + } | |
| 147 | + | |
| 148 | + public void setDoctorWeek(Integer doctorWeek) { | |
| 149 | + this.doctorWeek = doctorWeek; | |
| 150 | + } | |
| 151 | + | |
| 152 | + public Integer getServiceWeek() { | |
| 153 | + return serviceWeek; | |
| 154 | + } | |
| 155 | + | |
| 156 | + public void setServiceWeek(Integer serviceWeek) { | |
| 157 | + this.serviceWeek = serviceWeek; | |
| 158 | + } | |
| 159 | + | |
| 121 | 160 | public String getSex() { |
| 122 | 161 | return sex; |
| 123 | 162 | } |