Commit 3edbc1640e9875254056ba5c981f9df75ff4f54f
1 parent
24572d97c5
Exists in
master
and in
6 other branches
公卫2.0-新增新生儿家庭访视(新生儿访视)
Showing 2 changed files with 105 additions and 0 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/NewbornVisit.java
View file @
3edbc16
| ... | ... | @@ -173,6 +173,100 @@ |
| 173 | 173 | private String newZx; //新生儿窒息 |
| 174 | 174 | private Integer malformation; //畸形 |
| 175 | 175 | |
| 176 | + /** | |
| 177 | + *公卫2.0-新增新生儿家庭访视 | |
| 178 | + */ | |
| 179 | + //各厂商对接时,再确定具体的值 | |
| 180 | + private Integer isAppCreate; | |
| 181 | + //国家规范版本号 | |
| 182 | + private String standard; | |
| 183 | + //新生儿性别代码 | |
| 184 | + private String newbornSexCode; | |
| 185 | + //新生儿身份证号码 | |
| 186 | + private String newbornIdNo; | |
| 187 | + //新生儿出生日期 | |
| 188 | + private String newbornBirthDate; | |
| 189 | + //母亲姓名 | |
| 190 | + private String motherName; | |
| 191 | + //母亲职业类别名称 | |
| 192 | + private String motherOccupName; | |
| 193 | + //母亲电话号码 | |
| 194 | + private String motherTelNo; | |
| 195 | + //母亲出生日期 | |
| 196 | + private String motherBirthDate; | |
| 197 | + | |
| 198 | + public Integer getIsAppCreate() { | |
| 199 | + return isAppCreate; | |
| 200 | + } | |
| 201 | + | |
| 202 | + public void setIsAppCreate(Integer isAppCreate) { | |
| 203 | + this.isAppCreate = isAppCreate; | |
| 204 | + } | |
| 205 | + | |
| 206 | + public String getStandard() { | |
| 207 | + return standard; | |
| 208 | + } | |
| 209 | + | |
| 210 | + public void setStandard(String standard) { | |
| 211 | + this.standard = standard; | |
| 212 | + } | |
| 213 | + | |
| 214 | + public String getNewbornSexCode() { | |
| 215 | + return newbornSexCode; | |
| 216 | + } | |
| 217 | + | |
| 218 | + public void setNewbornSexCode(String newbornSexCode) { | |
| 219 | + this.newbornSexCode = newbornSexCode; | |
| 220 | + } | |
| 221 | + | |
| 222 | + public String getNewbornIdNo() { | |
| 223 | + return newbornIdNo; | |
| 224 | + } | |
| 225 | + | |
| 226 | + public void setNewbornIdNo(String newbornIdNo) { | |
| 227 | + this.newbornIdNo = newbornIdNo; | |
| 228 | + } | |
| 229 | + | |
| 230 | + public String getNewbornBirthDate() { | |
| 231 | + return newbornBirthDate; | |
| 232 | + } | |
| 233 | + | |
| 234 | + public void setNewbornBirthDate(String newbornBirthDate) { | |
| 235 | + this.newbornBirthDate = newbornBirthDate; | |
| 236 | + } | |
| 237 | + | |
| 238 | + public String getMotherName() { | |
| 239 | + return motherName; | |
| 240 | + } | |
| 241 | + | |
| 242 | + public void setMotherName(String motherName) { | |
| 243 | + this.motherName = motherName; | |
| 244 | + } | |
| 245 | + | |
| 246 | + public String getMotherOccupName() { | |
| 247 | + return motherOccupName; | |
| 248 | + } | |
| 249 | + | |
| 250 | + public void setMotherOccupName(String motherOccupName) { | |
| 251 | + this.motherOccupName = motherOccupName; | |
| 252 | + } | |
| 253 | + | |
| 254 | + public String getMotherTelNo() { | |
| 255 | + return motherTelNo; | |
| 256 | + } | |
| 257 | + | |
| 258 | + public void setMotherTelNo(String motherTelNo) { | |
| 259 | + this.motherTelNo = motherTelNo; | |
| 260 | + } | |
| 261 | + | |
| 262 | + public String getMotherBirthDate() { | |
| 263 | + return motherBirthDate; | |
| 264 | + } | |
| 265 | + | |
| 266 | + public void setMotherBirthDate(String motherBirthDate) { | |
| 267 | + this.motherBirthDate = motherBirthDate; | |
| 268 | + } | |
| 269 | + | |
| 176 | 270 | public Integer getCsWeek() { |
| 177 | 271 | return csWeek; |
| 178 | 272 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/NewbornServiceImpl.java
View file @
3edbc16
| ... | ... | @@ -497,6 +497,17 @@ |
| 497 | 497 | restMap.put("skinOther", newbornVisit.getSkinOther() == null ? "" : newbornVisit.getSkinOther()); |
| 498 | 498 | restMap.put("complexionOther", newbornVisit.getComplexionOther() == null ? "" : newbornVisit.getComplexionOther()); |
| 499 | 499 | restMap.put("umbilicalCordOther", newbornVisit.getUmbilicalCordOther() == null ? "" : newbornVisit.getUmbilicalCordOther()); |
| 500 | + /** 公卫2.0-新增新生儿家庭访视 */ | |
| 501 | + restMap.put("isAppCreate", newbornVisit.getIsAppCreate()); | |
| 502 | + restMap.put("standard", newbornVisit.getStandard()); | |
| 503 | + restMap.put("newbornSexCode", newbornVisit.getNewbornSexCode()); | |
| 504 | + restMap.put("newbornIdNo", newbornVisit.getNewbornIdNo()); | |
| 505 | + restMap.put("newbornBirthDate", newbornVisit.getNewbornBirthDate()); | |
| 506 | + restMap.put("motherName", newbornVisit.getMotherName()); | |
| 507 | + restMap.put("motherOccupName", newbornVisit.getMotherOccupName()); | |
| 508 | + restMap.put("motherTelNo", newbornVisit.getMotherTelNo()); | |
| 509 | + restMap.put("motherBirthDate", newbornVisit.getMotherBirthDate()); | |
| 510 | + | |
| 500 | 511 | return RespBuilder.buildSuccess(restMap); |
| 501 | 512 | } |
| 502 | 513 | return RespBuilder.buildSuccess(); |