Commit 21667bca4ed2cb857840840647867552c12dff2b

Authored by 张志伟
1 parent 087e346f

去掉跟进池查询参数

fw-shirasawa-domain/src/main/java/cn/fw/shirasawa/domain/query/CluePoolQueryVO.java
... ... @@ -53,10 +53,6 @@ public class CluePoolQueryVO extends PoolQuery {
53 53 */
54 54 private String comShops;
55 55 /**
56   - * 贷款期客户
57   - */
58   - private Boolean loanCustomer;
59   - /**
60 56 * 管理门店范围
61 57 */
62 58 private String scope;
... ... @@ -67,13 +63,6 @@ public class CluePoolQueryVO extends PoolQuery {
67 63 private String deadline;
68 64  
69 65  
70   - public Integer getLoanCustomer() {
71   - if (Objects.isNull(loanCustomer)) {
72   - return null;
73   - }
74   - return loanCustomer ? 1 : 0;
75   - }
76   -
77 66 public Date getStartTime() {
78 67 if (StringUtils.isNotBlank(startTime) && NumberUtils.isDigits(startTime)) {
79 68 LocalDateTime localDateTime = Instant.ofEpochMilli(NumberUtils.toLong(startTime)).atZone(ZoneId.systemDefault()).toLocalDateTime();
... ...