Commit faa35783e52dac8ead62381c57228631a24507d2

Authored by shiyang
1 parent a7a1149c69

update

Showing 2 changed files with 18 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyEyeCheck.java View file @ faa3578
... ... @@ -412,6 +412,23 @@
412 412 //合作 0欠合作 1不合作
413 413 private String cooperation;
414 414  
  415 + /**
  416 + * 秦皇岛
  417 + * 儿童眼保健检查-新增页面 底部加 分类下拉列
  418 + * 分类-1.近视高危、2.弱视高危、3.异常高危
  419 + */
  420 + private Integer classify;
  421 +
  422 + public Integer getClassify() {
  423 + return classify;
  424 + }
  425 +
  426 + public void setClassify(Integer classify) {
  427 + this.classify = classify;
  428 + }
  429 +
  430 + /****************************************/
  431 +
415 432 public List<Map> getHandleOpinionsIdList() {
416 433 return handleOpinionsIdList;
417 434 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEyeCheckServiceImpl.java View file @ faa3578
... ... @@ -1772,6 +1772,7 @@
1772 1772 }
1773 1773 temp.put("checkTime", babyEyeCheck.getCheckTime() == null ? null : DateUtil.getYyyyMmDd(babyEyeCheck.getCheckTime()));
1774 1774 temp.put("type", "2");
  1775 + temp.put("classify",babyEyeCheck.getClassify());
1775 1776 CollectionUtils.removeNullValue(temp);
1776 1777 rest.add(temp);
1777 1778 }