fuliqi
2024-04-02 32b4f6188f32e6c08e813efa98a25d94eacdc0c6
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
package com.ycl.platform.domain.entity;
 
 
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.math.BigDecimal;
 
/**
 * 核算规则对象 t_accounting_rules
 *
 * @author gonghl
 * @date 2024-03-21
 */
public class AccountingRules extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * $column.columnComment
     */
    private Integer id;
 
    /**
     * 规则名称
     */
    @Excel(name = "规则名称")
    private String rulesName;
 
    /**
     * 合同名称
     */
    @Excel(name = "合同名称")
    private String contractName;
 
    /**
     * 金额
     */
    @Excel(name = "金额")
    private BigDecimal amount;
 
    /**
     * 逻辑删除
     */
    @TableLogic
    private String deleted;
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setRulesName(String rulesName) {
        this.rulesName = rulesName;
    }
 
    public String getRulesName() {
        return rulesName;
    }
 
    public void setContractName(String contractName) {
        this.contractName = contractName;
    }
 
    public String getContractName() {
        return contractName;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    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("rulesName", getRulesName())
                .append("contractName", getContractName())
                .append("amount", getAmount())
                .append("createTime", getCreateTime())
                .append("updateTime", getUpdateTime())
                .append("deleted", getDeleted())
                .toString();
    }
}