Blame view

fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/dto/PubCluePoolReportQueryDTO.java 559 Bytes
bfac3874   xianpengcheng   public_report_dat...
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
  package cn.fw.valhalla.domain.dto;
  
  import lombok.Data;
  
  import java.time.LocalDateTime;
  import java.util.Set;
  
  /**
   * @author : kurisu
   * @className : FollowClueDTO
   * @description : 查询站岗分配聚合
   * @date: 2020-11-20 15:27
   */
  @Data
  public class PubCluePoolReportQueryDTO {
  
     private LocalDateTime startDate;
  
     private LocalDateTime endDate;
  
     private Set<Integer> sourceTypes;
  
     private Long groupId;
  
     public PubCluePoolReportQueryDTO() {
     }
  
     public PubCluePoolReportQueryDTO(Long groupId) {
        this.groupId = groupId;
     }
  }