New file |
| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ycl.platform.base.AbsEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * 考核模板 |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-06 |
| | | */ |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_template") |
| | | @ApiModel(value = "CheckTemplate对象", description = "考核模板") |
| | | public class CheckTemplate extends AbsEntity { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 模板名称 |
| | | */ |
| | | @TableField("template_name") |
| | | private String templateName; |
| | | |
| | | @ApiModelProperty("调整系数") |
| | | @TableField("adjust_coefficient") |
| | | private BigDecimal adjustCoefficient; |
| | | |
| | | /** |
| | | * 调整系数的方式:乘除 |
| | | */ |
| | | @TableField("adjust_way") |
| | | private String adjustWay; |
| | | |
| | | @ApiModelProperty("状态") |
| | | @TableField("status") |
| | | private String status; |
| | | |
| | | |
| | | } |