Blame view

fw-morax-domain/src/main/java/cn/fw/morax/domain/db/eval/EvalGroupIndicatorTargetHitLog.java 1.75 KB
eb162cce   姜超   feature(*): 考评组实体类
1
2
3
  package cn.fw.morax.domain.db.eval;
  
  import cn.fw.common.data.entity.BaseAuditableTimeEntity;
e79c21f9   姜超   feature(*): 计算计算修改
4
  import cn.fw.morax.domain.enums.EvalScopeEnum;
e376b24c   姜超   feature(*): 修改个人考评
5
  import cn.fw.morax.domain.enums.EvalUseTargetEnum;
4e4f7767   姜超   feature(*): 考评组命中记录表
6
  import cn.fw.morax.domain.enums.IndicatorTypeEnum;
eb162cce   姜超   feature(*): 考评组实体类
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
  import com.baomidou.mybatisplus.annotation.TableLogic;
  import com.baomidou.mybatisplus.annotation.TableName;
  import lombok.Data;
  import lombok.EqualsAndHashCode;
  import lombok.experimental.Accessors;
  
  import java.io.Serializable;
  import java.math.BigDecimal;
  import java.time.LocalDate;
  import java.time.LocalDateTime;
  
  /**
   * <p>
   * 考评指标达成目标记录
   * </p>
   *
   * @author jiangchao
   * @since 2022-12-09
   */
  @Data
  @EqualsAndHashCode(callSuper = false)
  @TableName(autoResultMap = true)
  public class EvalGroupIndicatorTargetHitLog extends BaseAuditableTimeEntity<EvalGroupIndicatorTargetHitLog, Long> {
  
      private static final long serialVersionUID = 1L;
  
      /**
e79c21f9   姜超   feature(*): 计算计算修改
34
       * 员工id、门店id
4e4f7767   姜超   feature(*): 考评组命中记录表
35
       */
e0944b69   姜超   feature(*): 修改计算考评
36
      private Long poolId;
e79c21f9   姜超   feature(*): 计算计算修改
37
38
39
40
41
  
      /**
       * 考评范围; 1:门店考评 2:人员考评
       */
      private EvalScopeEnum scopeType;
4e4f7767   姜超   feature(*): 考评组命中记录表
42
43
  
      /**
eb162cce   姜超   feature(*): 考评组实体类
44
45
       * 考评组指标/前置条件 id
       */
c06a04fb   姜超   feature(*): 考评指标详情
46
      private Long referId;
eb162cce   姜超   feature(*): 考评组实体类
47
48
49
50
  
      /**
       * 类型 1:考评组指标 2:前置条件指标
       */
4e4f7767   姜超   feature(*): 考评组命中记录表
51
      private IndicatorTypeEnum targetType;
eb162cce   姜超   feature(*): 考评组实体类
52
53
54
55
56
57
58
59
60
61
62
63
  
      /**
       * 原始值
       */
      private BigDecimal value;
  
      /**
       * 达成目标
       */
      private BigDecimal reachValue;
  
      /**
e376b24c   姜超   feature(*): 修改个人考评
64
65
66
67
68
69
70
71
72
73
       * 额外达成目标
       */
      private BigDecimal extraReachValue;
  
      /**
       * 考评使用目标; 1:无目标 2:第一目标 3:额外目标值
       */
      private EvalUseTargetEnum useTarget;
  
      /**
eb162cce   姜超   feature(*): 考评组实体类
74
75
76
77
78
79
80
81
82
       * 数据日期
       */
      private LocalDate dataDate;
  
      /**
       * 集团id
       */
      private Long groupId;
  
eb162cce   姜超   feature(*): 考评组实体类
83
84
85
86
      private Boolean yn;
  
  
  }