fuliqi
2024-04-01 d60aee1468e17e2deeb21a228791ad36ca535f3f
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.ycl.system.domain.TreeEntity;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
/**
 * 违约规则对象 t_default_rule
 * 
 * @author ruoyi
 * @date 2024-04-01
 */
public class DefaultRule extends TreeEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 主键 */
    private Long id;
 
    /** 规则名称 */
    @Excel(name = "规则名称")
    private String ruleName;
 
    /** 扣减方式 */
    @Excel(name = "扣减方式")
    private Long deductCategory;
 
    /** 人工打分/系统打分 */
    private Long deductWay;
 
    /** 规则描述 */
    @Excel(name = "规则描述")
    private String ruleDesc;
 
    /** 规则状态 */
    @Excel(name = "规则状态")
    private String ruleStatus;
 
    /** 逻辑删除 */
    private String deleted;
 
    public void setId(Long id) 
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setRuleName(String ruleName) 
    {
        this.ruleName = ruleName;
    }
 
    public String getRuleName() 
    {
        return ruleName;
    }
    public void setDeductCategory(Long deductCategory) 
    {
        this.deductCategory = deductCategory;
    }
 
    public Long getDeductCategory() 
    {
        return deductCategory;
    }
    public void setDeductWay(Long deductWay) 
    {
        this.deductWay = deductWay;
    }
 
    public Long getDeductWay() 
    {
        return deductWay;
    }
    public void setRuleDesc(String ruleDesc) 
    {
        this.ruleDesc = ruleDesc;
    }
 
    public String getRuleDesc() 
    {
        return ruleDesc;
    }
    public void setRuleStatus(String ruleStatus) 
    {
        this.ruleStatus = ruleStatus;
    }
 
    public String getRuleStatus() 
    {
        return ruleStatus;
    }
    public void setDeleted(String deleted) 
    {
        this.deleted = deleted;
    }
 
    public String getDeleted() 
    {
        return deleted;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("ruleName", getRuleName())
            .append("parentId", getParentId())
            .append("deductCategory", getDeductCategory())
            .append("deductWay", getDeductWay())
            .append("ruleDesc", getRuleDesc())
            .append("ruleStatus", getRuleStatus())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("deleted", getDeleted())
            .toString();
    }
}