Commit c9f34c929576155553ae71f265a79e28e281cb6e

Authored by liquanyu
1 parent 06b0577550

lis排序

Showing 2 changed files with 14 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java View file @ c9f34c9
... ... @@ -428,6 +428,9 @@
428 428 items = JsonUtil.toList(lis.getItemJson(),LisReportItemModel.class);
429 429 }
430 430  
  431 + //排序
  432 + sortLisReportItems(items);
  433 +
431 434 //List<LisReportItemModel> items = lisService.queryLisItemByModel(query);
432 435 if (CollectionUtils.isNotEmpty(items))
433 436 {
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java View file @ c9f34c9
... ... @@ -23,6 +23,17 @@
23 23 private String genRemark; // 一般检查备注
24 24 private String gynRemark; // 妇科检查备注
25 25  
  26 + //该字段是针对聊城东昌区妇幼保健医院保存当天孕妇的lis检查项
  27 + private String lisCheckItems;
  28 +
  29 + public String getLisCheckItems() {
  30 + return lisCheckItems;
  31 + }
  32 +
  33 + public void setLisCheckItems(String lisCheckItems) {
  34 + this.lisCheckItems = lisCheckItems;
  35 + }
  36 +
26 37 public String getGenRemark() {
27 38 return genRemark;
28 39 }