Commit e64125e332b2b59f175120f630a52987b3833e3c
1 parent
b7b9f86665
Exists in
master
and in
6 other branches
小程序开通孕期服务同步修改patientBug调试
Showing 2 changed files with 32 additions and 1 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/model/PatientService.java
View file @
e64125e
| ... | ... | @@ -316,5 +316,35 @@ |
| 316 | 316 | this.updateUser = updateUser; |
| 317 | 317 | |
| 318 | 318 | } |
| 319 | + | |
| 320 | + @Override | |
| 321 | + public String toString() { | |
| 322 | + return "PatientService{" + | |
| 323 | + "id='" + id + '\'' + | |
| 324 | + ", parentid='" + parentid + '\'' + | |
| 325 | + ", pid='" + pid + '\'' + | |
| 326 | + ", perType=" + perType + | |
| 327 | + ", serType=" + serType + | |
| 328 | + ", serInfos=" + serInfos + | |
| 329 | + ", serDoct='" + serDoct + '\'' + | |
| 330 | + ", createDate=" + createDate + | |
| 331 | + ", createUserName='" + createUserName + '\'' + | |
| 332 | + ", createUser='" + createUser + '\'' + | |
| 333 | + ", serStatus=" + serStatus + | |
| 334 | + ", updateDate=" + updateDate + | |
| 335 | + ", updateUserName='" + updateUserName + '\'' + | |
| 336 | + ", updateUser='" + updateUser + '\'' + | |
| 337 | + ", hospitalId='" + hospitalId + '\'' + | |
| 338 | + ", serCode='" + serCode + '\'' + | |
| 339 | + ", status=" + status + | |
| 340 | + ", receiveDate=" + receiveDate + | |
| 341 | + ", receiveUser='" + receiveUser + '\'' + | |
| 342 | + ", backDate=" + backDate + | |
| 343 | + ", backUser='" + backUser + '\'' + | |
| 344 | + ", orderId='" + orderId + '\'' + | |
| 345 | + ", synStatus=" + synStatus + | |
| 346 | + ", isOld=" + isOld + | |
| 347 | + '}'; | |
| 348 | + } | |
| 319 | 349 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientServiceSysFacade.java
View file @
e64125e
| ... | ... | @@ -27,7 +27,7 @@ |
| 27 | 27 | /** |
| 28 | 28 | * @auther yangfei |
| 29 | 29 | * @createTime 2017年10月12日 17时09分 |
| 30 | - * @discription | |
| 30 | + * @discription 小程序调用开通服务调用接口 | |
| 31 | 31 | */ |
| 32 | 32 | @Component |
| 33 | 33 | public class PatientServiceSysFacade implements SysBaseFacade { |
| ... | ... | @@ -51,6 +51,7 @@ |
| 51 | 51 | // JSONObject jsonObject = JSONObject.fromObject(synForm); |
| 52 | 52 | // PatientService patientService = (PatientService)JSONObject.toBean(jsonObject, PatientService.class); |
| 53 | 53 | PatientService patientService = (PatientService) JSONObject.toBean(jsonArray.getJSONObject(i), PatientService.class); |
| 54 | + System.out.println("请求参数转换结果:"+patientService); | |
| 54 | 55 | baseResponse = validate(patientService); |
| 55 | 56 | if (baseResponse.getErrorcode() != ErrorCodeConstants.SUCCESS) { |
| 56 | 57 | return baseResponse; |