Commit 484af9b263b1d64ed390c05e5694fb816b8c5f4b

Authored by wangbo
1 parent bea35a6424

孕妇追访搜索功能测试

Showing 2 changed files with 29 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java View file @ 484af9b
... ... @@ -378,14 +378,19 @@
378 378 /**
379 379 * 孕妇追访功能新增搜索条件20190709
380 380 * */
  381 + //妇女建档时间
381 382 downRecordQuery.setFoundStart(downQueryRequest.getFoundDateStart());
382 383 downRecordQuery.setFoundEnd(downQueryRequest.getFoundDateEnd());
383   -
  384 + //预约追访时间
384 385 downRecordQuery.setAppointmentDateStart(downQueryRequest.getAppointmentDateStart());
385 386 downRecordQuery.setAppointmentDateEnd(downQueryRequest.getAppointmentDateEnd());
386   -
  387 + //追访状态
387 388 downRecordQuery.setFollowupStatus(downQueryRequest.getFollowupStatus());
  389 + //追访时间
  390 + downRecordQuery.setTrackDownDateStart(downQueryRequest.getTrackDownDateStart());
  391 + downRecordQuery.setTrackDownDateEnd(downQueryRequest.getTrackDownDateEnd());
388 392  
  393 + //逾期天数
389 394 if (null != downQueryRequest.getBeOverdueDays()) {
390 395 Calendar instance = Calendar.getInstance();
391 396 instance.setTime(new Date());
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/TrackDownQueryRequest.java View file @ 484af9b
... ... @@ -76,6 +76,28 @@
76 76 //起始逾期天数
77 77 private Integer beOverdueDays;
78 78  
  79 + //开始追访日期
  80 + private Date trackDownDateStart;
  81 +
  82 + //结束追访日期
  83 + private Date trackDownDateEnd;
  84 +
  85 +
  86 + public Date getTrackDownDateStart() {
  87 + return trackDownDateStart;
  88 + }
  89 +
  90 + public void setTrackDownDateStart(Date trackDownDateStart) {
  91 + this.trackDownDateStart = trackDownDateStart;
  92 + }
  93 +
  94 + public Date getTrackDownDateEnd() {
  95 + return trackDownDateEnd;
  96 + }
  97 +
  98 + public void setTrackDownDateEnd(Date trackDownDateEnd) {
  99 + this.trackDownDateEnd = trackDownDateEnd;
  100 + }
79 101  
80 102 public Integer getBeOverdueDays() {
81 103 return beOverdueDays;