Commit 29a1303939ae62078188e8b657f2a9ddf8e40af9
1 parent
a7ccd1b353
Exists in
master
and in
6 other branches
update
Showing 3 changed files with 14 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/CervicalCancerModel.java
View file @
29a1303
| ... | ... | @@ -33,6 +33,10 @@ |
| 33 | 33 | |
| 34 | 34 | private String phone; |
| 35 | 35 | |
| 36 | + //编号 | |
| 37 | + private String code; | |
| 38 | + | |
| 39 | + | |
| 36 | 40 | /** |
| 37 | 41 | * 身份证 |
| 38 | 42 | */ |
| ... | ... | @@ -79,6 +83,14 @@ |
| 79 | 83 | private Date created; |
| 80 | 84 | |
| 81 | 85 | private String hospitalId; |
| 86 | + | |
| 87 | + public String getCode() { | |
| 88 | + return code; | |
| 89 | + } | |
| 90 | + | |
| 91 | + public void setCode(String code) { | |
| 92 | + this.code = code; | |
| 93 | + } | |
| 82 | 94 | |
| 83 | 95 | public String getHospitalId() { |
| 84 | 96 | return hospitalId; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/SyncDataTaskService.java
View file @
29a1303
| ... | ... | @@ -61,6 +61,7 @@ |
| 61 | 61 | urls.put("area-zhucheng-api.healthbaby.com.cn:12356","诸城市妇幼保健院"); |
| 62 | 62 | urls.put("area-weihai-api.healthbaby.com.cn:12356","威海市妇幼"); |
| 63 | 63 | urls.put("area-chengde-api.healthbaby.com.cn:12356","承德"); |
| 64 | + urls.put("area-lingcheng-api.healthbaby.com.cn:12356","陵城"); | |
| 64 | 65 | } |
| 65 | 66 | |
| 66 | 67 | @Autowired |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/CervicalCancerServiceImpl.java
View file @
29a1303
| ... | ... | @@ -184,6 +184,7 @@ |
| 184 | 184 | result.setName(model.getUsername()); |
| 185 | 185 | result.setAge(model.getAge()); |
| 186 | 186 | result.setPhone(model.getPhone()); |
| 187 | + result.setParentId(model.getId()); | |
| 187 | 188 | result.setIdCardNo(model.getCertificateNum()); |
| 188 | 189 | BaseResponse baseResponse = new BaseResponse(); |
| 189 | 190 | baseResponse.setObject(result); |