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
package com.ycl.platform.domain.entity;
 
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.entity.BaseEntity;
import lombok.Data;
import lombok.experimental.Accessors;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
 
import java.math.BigDecimal;
 
/**
 * 考核模板-规则中间对象 t_check_template_rule
 * 
 * @author ruoyi
 * @date 2024-04-01
 */
@Data
@Accessors(chain = true)
@TableName("t_check_template_rule")
public class CheckTemplateRule
{
    private static final long serialVersionUID = 1L;
 
    /**  */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /** 考核模板 */
    @Excel(name = "考核模板")
    @TableField("check_template_id")
    private Integer checkTemplateId;
 
    /** 考核规则 */
    @Excel(name = "考核规则")
    @TableField("check_rule_id")
    private Integer checkRuleId;
 
    /** 规则权重 */
    @Excel(name = "规则权重")
    @TableField("weight")
    private BigDecimal weight;
 
    @TableField(exist = false)
    private String checkRuleName;
    @TableField(exist = false)
    private String ruleIndex;
}