fuliqi
2024-09-06 045023133d111be97ad52f097b4b99a2cf5a8311
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
@@ -1,151 +1,79 @@
package com.ycl.platform.domain.entity;
import annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ycl.system.entity.BaseEntity;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
/**
 * 考核积分明细对象 t_check_score
 *
 *
 * @author ruoyi
 * @date 2024-04-01
 * @date 2024-04-22
 */
@Data
@TableName("t_check_score")
public class CheckScore extends BaseEntity
{
    private static final long serialVersionUID = 1L;
    /**  */
    private Long id;
    /** 分值 */
    @Excel(name = "分值")
    private BigDecimal score;
    /** 区县 */
    /** deptid */
    @Excel(name = "区县")
    private Long deptId;
    /** 考核 */
    @Excel(name = "考核")
    private Long publishId;
    /** 考核模板id */
    @Excel(name = "考核模板id")
    private Integer templateId;
    /** 对应check_index_表id */
    private Long indexId;
    /** 考核标签(省厅/市局) */
    @Excel(name = "考核标签(省厅/市局)")
    private Integer examineTag;
    /** 规则 */
    @Excel(name = "规则")
    private Long ruleId;
    /** 考核类型(视频/车辆/人脸) */
    @Excel(name = "考核类型(视频/车辆/人脸)")
    private Short examineCategory;
    /** 修改时间 */
    @Excel(name = "修改时间")
    private Date updateTime;
    /** 考核类型 */
    @Excel(name = "考核类型")
    private Long examineCategory;
    /** 创建时间 */
    @Excel(name = "创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
    /** 修改人 */
    @Excel(name = "修改人")
    private Integer updateUser;
    /** 是否发布 */
    @Excel(name = "是否发布")
    private String publish;
    /**  */
    private Long updateUser;
    //折线图日期参数
    @TableField(exist = false)
    private String date;
    /**  */
    @Excel(name = "")
    private String updateUserName;
    @TableField(exist = false)
    private Date startDate;
    /**  */
    @Excel(name = "")
    private Long auditState;
    @TableField(exist = false)
    private Date endDate;
    public void setId(Long id)
    {
        this.id = id;
    }
    @TableField(exist = false)
    private List<String> quarter;
    public Long getId()
    {
        return id;
    }
    public void setScore(BigDecimal score)
    {
        this.score = score;
    }
    public BigDecimal getScore()
    {
        return score;
    }
    public void setDeptId(Long deptId)
    {
        this.deptId = deptId;
    }
    public Long getDeptId()
    {
        return deptId;
    }
    public void setPublishId(Long publishId)
    {
        this.publishId = publishId;
    }
    public Long getPublishId()
    {
        return publishId;
    }
    public void setRuleId(Long ruleId)
    {
        this.ruleId = ruleId;
    }
    public Long getRuleId()
    {
        return ruleId;
    }
    public void setExamineCategory(Long examineCategory)
    {
        this.examineCategory = examineCategory;
    }
    public Long getExamineCategory()
    {
        return examineCategory;
    }
    public void setUpdateUser(Long updateUser)
    {
        this.updateUser = updateUser;
    }
    public Long getUpdateUser()
    {
        return updateUser;
    }
    public void setUpdateUserName(String updateUserName)
    {
        this.updateUserName = updateUserName;
    }
    public String getUpdateUserName()
    {
        return updateUserName;
    }
    public void setAuditState(Long auditState)
    {
        this.auditState = auditState;
    }
    public Long getAuditState()
    {
        return auditState;
    }
    @Override
    public String toString() {
        return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("score", getScore())
            .append("deptId", getDeptId())
            .append("publishId", getPublishId())
            .append("ruleId", getRuleId())
            .append("examineCategory", getExamineCategory())
            .append("createTime", getCreateTime())
            .append("updateUser", getUpdateUser())
            .append("updateUserName", getUpdateUserName())
            .append("auditState", getAuditState())
            .toString();
    }
}