| | |
| | | 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 io.swagger.annotations.ApiModel; |
| | | 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; |
| | | |
| | | /** |
| | | * @author:xp |
| | | * @date:2024/3/8 9:18 |
| | | * 考核模板-规则中间对象 t_check_template_rule |
| | | * |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_template_rule") |
| | | @ApiModel(value = "CheckTemplate对象", description = "考核模板") |
| | | public class CheckTemplateRule { |
| | | public class CheckTemplateRule |
| | | { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** */ |
| | | @TableId(value = "id", type = IdType.AUTO) |
| | | private Integer id; |
| | | private Long id; |
| | | |
| | | /** |
| | | * 模板ID |
| | | */ |
| | | /** 考核模板 */ |
| | | @Excel(name = "考核模板") |
| | | @TableField("check_template_id") |
| | | private Integer checkTemplateId; |
| | | |
| | | /** |
| | | * 规则ID |
| | | */ |
| | | /** 考核规则 */ |
| | | @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; |
| | | } |