Commit 26632d588c456ecd2aaac6af60e27ce2023bea87
1 parent
e84b393de0
Exists in
master
and in
8 other branches
增加统计
Showing 6 changed files with 33 additions and 3 deletions
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanChanResult.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanPatientsResult.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/RiskPatientsResult.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanChanPatientWorker.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanPatientWorker.java
- platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/WorkHR.java
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanChanResult.java
View file @
26632d5
... | ... | @@ -56,6 +56,16 @@ |
56 | 56 | private String firstBH; |
57 | 57 | //分娩医院 |
58 | 58 | private String fCh; |
59 | + //建档时间 | |
60 | + private String bTime; | |
61 | + | |
62 | + public String getbTime() { | |
63 | + return bTime; | |
64 | + } | |
65 | + | |
66 | + public void setbTime(String bTime) { | |
67 | + this.bTime = bTime; | |
68 | + } | |
59 | 69 | |
60 | 70 | public String getRegisterAddr() { |
61 | 71 | return registerAddr; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/QuanPatientsResult.java
View file @
26632d5
... | ... | @@ -67,6 +67,16 @@ |
67 | 67 | private String firstBH; |
68 | 68 | //当前产检医院 |
69 | 69 | private String currentCh; |
70 | + //建档时间 | |
71 | + private String bTime; | |
72 | + | |
73 | + public String getbTime() { | |
74 | + return bTime; | |
75 | + } | |
76 | + | |
77 | + public void setbTime(String bTime) { | |
78 | + this.bTime = bTime; | |
79 | + } | |
70 | 80 | |
71 | 81 | public String getRegisterAddr() { |
72 | 82 | return registerAddr; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/RiskPatientsResult.java
View file @
26632d5
... | ... | @@ -77,6 +77,16 @@ |
77 | 77 | private String firstBH; |
78 | 78 | //当前产检医院 |
79 | 79 | private String currentCh; |
80 | + //建档时间 | |
81 | + private String bTime; | |
82 | + | |
83 | + public String getbTime() { | |
84 | + return bTime; | |
85 | + } | |
86 | + | |
87 | + public void setbTime(String bTime) { | |
88 | + this.bTime = bTime; | |
89 | + } | |
80 | 90 | |
81 | 91 | public String getRegisterAddr() { |
82 | 92 | return registerAddr; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanChanPatientWorker.java
View file @
26632d5
... | ... | @@ -89,7 +89,7 @@ |
89 | 89 | chanResult.setlName(patients.getBookbuildingDoctor()); |
90 | 90 | } |
91 | 91 | } |
92 | - | |
92 | + chanResult.setbTime(DateUtil.getyyyy_MM_dd(patients.getBookbuildingDate())); | |
93 | 93 | //注册地址 |
94 | 94 | chanResult.setRegisterAddr(CommonsHelper.getResidence(patients.getProvinceRegisterId(), patients.getCityRegisterId(), patients.getAreaRegisterId(), patients.getStreetRegisterId(), patients.getAddressRegister(), basicConfigService)); |
95 | 95 | chanResult.setAddr(CommonsHelper.getResidence(patients.getProvinceId(), patients.getCityId(), patients.getAreaId(), patients.getStreetId(), patients.getAddress(), basicConfigService)); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/QuanPatientWorker.java
View file @
26632d5
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/WorkHR.java
View file @
26632d5