xiangpei
2024-04-23 ab4e150d41e0200b64a75c59b668a9385b7782fd
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
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 核算记录对象 t_calculate_record
 * 
 * @author ruoyi
 * @date 2024-04-03
 */
@Data
public class CalculateRecord extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    private Long id;
 
    /** 核算记录日期 */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "核算记录日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date date;
 
    /** 核算规则 */
    @Excel(name = "核算规则")
    private Long ruleId;
 
    /** 单位id */
    @Excel(name = "单位id")
    private Long unitId;
 
    /** 总服务费 */
    @Excel(name = "总服务费")
    private BigDecimal totalAmount;
 
    /** 扣减服务费 */
    @Excel(name = "扣减服务费")
    private BigDecimal deductAmount;
 
    /** 考核分数 */
    @Excel(name = "考核分数")
    private BigDecimal score;
 
 
}