Commit cd72dee83b7ecfdd5ad28c87d0a4093445dd57ef
1 parent
6d6c8540d9
Exists in
master
and in
6 other branches
辅助建档
Showing 3 changed files with 23 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/query/PatientsQuery.java
View file @
cd72dee
| ... | ... | @@ -184,6 +184,16 @@ |
| 184 | 184 | |
| 185 | 185 | private Integer buildDaysStart; |
| 186 | 186 | private Integer buildDaysEnd; |
| 187 | + //辅助建档医生id | |
| 188 | + private String assistUserId; | |
| 189 | + | |
| 190 | + public String getAssistUserId() { | |
| 191 | + return assistUserId; | |
| 192 | + } | |
| 193 | + | |
| 194 | + public void setAssistUserId(String assistUserId) { | |
| 195 | + this.assistUserId = assistUserId; | |
| 196 | + } | |
| 187 | 197 | |
| 188 | 198 | public Boolean isExtSource() { |
| 189 | 199 | return extSource; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java
View file @
cd72dee
| ... | ... | @@ -1045,6 +1045,7 @@ |
| 1045 | 1045 | PatientManagerResult patientManagerResult = new PatientManagerResult(); |
| 1046 | 1046 | |
| 1047 | 1047 | PatientsQuery patientsQuery = new PatientsQuery(); |
| 1048 | + patientsQuery.setAssistUserId(patientManagerRequest.getAssistUserId()); | |
| 1048 | 1049 | patientsQuery.setSendCareMan(patientManagerRequest.getSendCareMan()); |
| 1049 | 1050 | if (patientManagerRequest.getBuildWeekStart() != null) { |
| 1050 | 1051 | patientsQuery.setBuildDaysStart(patientManagerRequest.getBuildWeekStart() * 7); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PatientManagerRequest.java
View file @
cd72dee
| ... | ... | @@ -83,6 +83,18 @@ |
| 83 | 83 | private Integer buildWeekStart; |
| 84 | 84 | private Integer buildWeekEnd; |
| 85 | 85 | |
| 86 | + | |
| 87 | + //辅助建档医生id | |
| 88 | + private String assistUserId; | |
| 89 | + | |
| 90 | + public String getAssistUserId() { | |
| 91 | + return assistUserId; | |
| 92 | + } | |
| 93 | + | |
| 94 | + public void setAssistUserId(String assistUserId) { | |
| 95 | + this.assistUserId = assistUserId; | |
| 96 | + } | |
| 97 | + | |
| 86 | 98 | public Integer getBuildWeekStart() { |
| 87 | 99 | return buildWeekStart; |
| 88 | 100 | } |