Commit dd3937a19135ab1d1b7835a15d52ac80ccf24c03
1 parent
56014da8f8
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 4 additions and 4 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/LhServiceFollowModel.java
View file @
dd3937a
| ... | ... | @@ -35,7 +35,7 @@ |
| 35 | 35 | private Date treatDate; |
| 36 | 36 | |
| 37 | 37 | //治疗时间 |
| 38 | - private Date treatDoctor; | |
| 38 | + private String treatDoctor; | |
| 39 | 39 | |
| 40 | 40 | //处治结果 1 治愈 2 转诊 |
| 41 | 41 | private Integer handleResult; |
| 42 | 42 | |
| ... | ... | @@ -143,11 +143,11 @@ |
| 143 | 143 | this.treatDate = treatDate; |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - public Date getTreatDoctor() { | |
| 146 | + public String getTreatDoctor() { | |
| 147 | 147 | return treatDoctor; |
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - public void setTreatDoctor(Date treatDoctor) { | |
| 150 | + public void setTreatDoctor(String treatDoctor) { | |
| 151 | 151 | this.treatDoctor = treatDoctor; |
| 152 | 152 | } |
| 153 | 153 |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SmnTaskFacade.java
View file @
dd3937a
| ... | ... | @@ -34,7 +34,7 @@ |
| 34 | 34 | */ |
| 35 | 35 | public void addSmnJob() { |
| 36 | 36 | Date endDate = DateUtil.addDay(DateUtil.formatDate(new Date()), 0); |
| 37 | - Date start = DateUtil.addDay(DateUtil.formatDate(new Date()), -154); | |
| 37 | + Date start = DateUtil.addDay(DateUtil.formatDate(new Date()), -168); | |
| 38 | 38 | PatientsQuery patientsQuery = new PatientsQuery(); |
| 39 | 39 | patientsQuery.setLastMensesEnd(endDate); |
| 40 | 40 | patientsQuery.setLastMensesStart(start); |