Commit 09d20d688403f99b78147b2fd4f0d45c49de6f05
1 parent
91029b84cb
Exists in
master
and in
6 other branches
补录产检
Showing 2 changed files with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
09d20d6
| ... | ... | @@ -2740,6 +2740,8 @@ |
| 2740 | 2740 | AntexListResult antexListResult = new AntexListResult(); |
| 2741 | 2741 | String pid = patients.getId(); |
| 2742 | 2742 | |
| 2743 | + antexListResult.setFmDate(patients.getFmDate() == null ? null : DateUtil.getyyyy_MM_dd(patients.getFmDate())); | |
| 2744 | + | |
| 2743 | 2745 | //查询档案信息 |
| 2744 | 2746 | if (patients != null) { |
| 2745 | 2747 | //如果有数据源id,取主档案id |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexListResult.java
View file @
09d20d6
| ... | ... | @@ -72,8 +72,18 @@ |
| 72 | 72 | //医院ID |
| 73 | 73 | private String hospitalId; |
| 74 | 74 | |
| 75 | + private String fmDate; | |
| 76 | + | |
| 75 | 77 | //<!---------基本信息-----------> |
| 76 | 78 | |
| 79 | + | |
| 80 | + public String getFmDate() { | |
| 81 | + return fmDate; | |
| 82 | + } | |
| 83 | + | |
| 84 | + public void setFmDate(String fmDate) { | |
| 85 | + this.fmDate = fmDate; | |
| 86 | + } | |
| 77 | 87 | |
| 78 | 88 | public String getHospitalId() { |
| 79 | 89 | return hospitalId; |