fuliqi
2024-08-23 620a580dbfee0d438b4505f77c9a232332f53849
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
package com.ycl.platform.domain.vo;
 
import enumeration.general.RuleDeductCategoryEnum;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class CalculateRuleVO {
 
    /**
     * id
     */
    private Integer id;
 
    /**
     * 合同id
     */
    private Integer contractId;
 
    /**
     * 规则名称
     */
    private String ruleName;
 
    /**
     * 规则条件
     */
    private String ruleCondition;
 
    /**
     * 违规最小值
     */
    private Double min;
 
    /**
     * 违规最大值
     */
    private Double max;
 
    /**
     * 扣减方式 扣指定分数/分数乘以数量/除以数量后乘以分数
     */
    private RuleDeductCategoryEnum deductCategory;
 
    /**
     * 扣除分数
     */
    private Double calcFraction;
 
    /**
     * 当方式为除以时,除以当前字段数量
     */
    private Integer calcUnit;
 
    private Date createTime;
    private Date updateTime;
 
    private Integer deleted;
 
    private Integer unitId;
    //违规路数、个数
    private Integer num;
    //工单下发到审核通过的时间
    private long handleTime;
}