Blame view

fw-valhalla-domain/src/main/java/cn/fw/valhalla/domain/db/PublicReportData.java 1.79 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  package cn.fw.valhalla.domain.db;
  
  import cn.fw.common.data.entity.BaseAuditableTimeEntity;
  import lombok.Data;
  
  import java.time.LocalDate;
  
  /**
   * 公共池报表数据(初次抽取)(PublicReportData)实体类
   * @author makejava
   * @since 2023-05-12 16:09:45
   */
  @Data
  public class PublicReportData  extends BaseAuditableTimeEntity<PublicReportData, Long> {
      /**
       * 数据日期
       */
      private LocalDate dataDate;
      /**
       * 数据维度: 10门店,20人员,99来源
       */
      private String reportDimension;
      /**
       * 来源类型 1:首保 2:流失 3:主动放弃 (,来源)
       */
      private Integer type;
      /**
       * 用户id
       */
      private Long userId;
      /**
       * 用户名称
       */
      private String userName;
      /**
       * 门店id
       */
      private Long shopId;
      /**
       * 门店名称
       */
      private String shopName;
      /**
       * 月初始数(,来源)
       */
      private Integer monthInitial;
      /**
       * 日新增(,来源)
       */
      private Integer dayIncrease;
      /**
       * 月新增(,来源)
       */
      private Integer monthIncrease;
      /**
       * 截止当前(,来源)
       */
      private Integer currentQuantity;
      /**
       * 日站岗分配(,)
       */
      private Integer dayStandQuantity;
      /**
       * 月站岗分配(,)
       */
      private Integer monthStandQuantity;
      /**
       * 日自然到店成交((,))
       */
      private Integer dayNaturalQuantity;
      /**
       * 月自然到店成交((,))
       */
      private Integer monthNaturalQuantity;
      /**
       * 集团id
       */
      private Long groupId;
  
      public PublicReportData() {
      }
  
      public PublicReportData(String reportDimension, Long groupId) {
          this.reportDimension = reportDimension;
          this.groupId = groupId;
      }
  }