Blame view

fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/query/CustomCustomerQuery.java 780 Bytes
03c1a9b3   张志伟   :sparkles:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
  package cn.fw.valhalla.domain.query;
  
  
  import lombok.Data;
  
  import java.time.LocalDate;
  import java.util.List;
  
  /**
   * @author : kurisu
   * @className : CustomCustomerQuery
   * @description :
   * @date: 2022-01-10 17:46
   */
  @Data
  public class CustomCustomerQuery {
  
      private Integer minMileage;
      private Integer maxMileage;
      private LocalDate minBuyDate;
      private LocalDate maxBuyDate;
      private Integer level;
  
  
      private boolean andCondition;
  
  
      private Integer customerType;
  
      private Long groupId;
  
      private Integer followType;
      private String frameNo;
      private List<Long> shopList;
5b538595   张志伟   feature(*): 新增查询线...
35
36
37
38
39
  
      /**
       * 是否包含公共池
       */
      private Boolean includePublic;
655c423d   张志伟   :sparkles:
40
41
42
43
      /**
       * 排除用户集
       */
      private List<Long> excludeCustomerIds;
03c1a9b3   张志伟   :sparkles:
44
  }