Commit d5b25c6dd0c0b0b766012a5240642fa64203f473

Authored by wtt
1 parent e3b82705a3

update

Showing 2 changed files with 12 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java View file @ d5b25c6
... ... @@ -1138,6 +1138,7 @@
1138 1138 * @Date: 2020/7/22 10:08
1139 1139 */
1140 1140 base.setEncoded(model.getEncoded());
  1141 + base.setsINCard(model.getsINCard());
1141 1142 base.setBabyCardNo(model.getCardNo());
1142 1143 base.setBnationId(model.getBnationId() == null ? "" : getBasicConfig(model.getBnationId()));
1143 1144 /*end*/
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyBasicResult.java View file @ d5b25c6
... ... @@ -19,6 +19,9 @@
19 19 }
20 20 // 编码唯一,通过编码获取档案信息,编码格式20200721001
21 21 private String encoded;
  22 + //社保卡
  23 + private String sINCard;
  24 +
22 25 //新生儿民族Id
23 26 private String bnationId;
24 27 //儿童身份证
... ... @@ -102,6 +105,14 @@
102 105  
103 106 public void setEncoded(String encoded) {
104 107 this.encoded = encoded;
  108 + }
  109 +
  110 + public String getsINCard() {
  111 + return sINCard;
  112 + }
  113 +
  114 + public void setsINCard(String sINCard) {
  115 + this.sINCard = sINCard;
105 116 }
106 117  
107 118 public String getBabyCardNo() {