Commit 22288091891bc8479e742674ddcc5955d5f08dff

Authored by shiyang
1 parent 77af1c9b57

孕产-建档增加字段//推荐人

Showing 4 changed files with 34 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Patients.java View file @ 2228809
... ... @@ -438,6 +438,17 @@
438 438 //秦皇岛-有居住证 填写字段
439 439 private String liveCardNo;
440 440  
  441 + //推荐人
  442 + private String recommend;
  443 +
  444 + public String getRecommend() {
  445 + return recommend;
  446 + }
  447 +
  448 + public void setRecommend(String recommend) {
  449 + this.recommend = recommend;
  450 + }
  451 +
441 452 public String getHprovinceId() {
442 453 return hprovinceId;
443 454 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ 2228809
... ... @@ -2049,6 +2049,7 @@
2049 2049 patient.setPatientVerifName(yunRequest.getPatientVerifName());
2050 2050 patient.setHusVerifType(yunRequest.getHusVerifType());
2051 2051 patient.setLiveCardNo(yunRequest.getLiveCardNo());
  2052 + patient.setRecommend(yunRequest.getRecommend());
2052 2053  
2053 2054 return patient;
2054 2055 }
... ... @@ -2282,6 +2283,7 @@
2282 2283 result.setHusVerifType(p.getHusVerifType());
2283 2284 result.setHusbandName(p.getHusbandName());
2284 2285 result.setLiveCardNo(p.getLiveCardNo());
  2286 + result.setRecommend(p.getRecommend());
2285 2287  
2286 2288 return result;
2287 2289 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/YunBookbuildingAddRequest.java View file @ 2228809
... ... @@ -527,6 +527,17 @@
527 527 */
528 528 private Authentication verifyInfo;
529 529  
  530 + //推荐人
  531 + private String recommend;
  532 +
  533 + public String getRecommend() {
  534 + return recommend;
  535 + }
  536 +
  537 + public void setRecommend(String recommend) {
  538 + this.recommend = recommend;
  539 + }
  540 +
530 541 public Authentication getVerifyInfo() {
531 542 return verifyInfo;
532 543 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java View file @ 2228809
... ... @@ -467,6 +467,16 @@
467 467 */
468 468 private Authentication verifyInfo;
469 469  
  470 + //推荐人
  471 + private String recommend;
  472 +
  473 + public String getRecommend() {
  474 + return recommend;
  475 + }
  476 +
  477 + public void setRecommend(String recommend) {
  478 + this.recommend = recommend;
  479 + }
470 480 public Authentication getVerifyInfo() {
471 481 return verifyInfo;
472 482 }