fuliqi
2024-11-04 92961b33e531ae3f61ec908252081bfe679d3300
ycl-pojo/src/main/java/com/ycl/platform/domain/entity/CheckScore.java
@@ -6,22 +6,20 @@
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 org.springframework.format.annotation.DateTimeFormat;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
/**
 * 考核积分明细对象 t_check_score
 *
 *
 * @author ruoyi
 * @date 2024-04-22
 */
@Data
@TableName("t_check_score")
public class CheckScore
public class CheckScore extends BaseEntity
{
    private static final long serialVersionUID = 1L;
@@ -33,20 +31,25 @@
    @Excel(name = "分值")
    private BigDecimal score;
    /** deptid */
    @Excel(name = "区县")
    private Long deptId;
    @TableField(exist = false)
    private String deptName;
    //设备数量
    private Integer deviceCount;
    /** 考核模板id */
    @Excel(name = "考核模板id")
    private Integer templateId;
    /** 对应check_index_表id */
    private Long indexId;
    /** 考核标签(省厅/市局) */
    @Excel(name = "考核标签(省厅/市局)")
    private Integer examineTag;
    /** 考核类型(车辆/人脸/视频) */
    @Excel(name = "考核类型(车辆/人脸/视频)")
    /** 考核类型(视频/车辆/人脸) */
    @Excel(name = "考核类型(视频/车辆/人脸)")
    private Short examineCategory;
    /** 修改时间 */
    @Excel(name = "修改时间")
@@ -66,4 +69,14 @@
    //折线图日期参数
    @TableField(exist = false)
    private String date;
    @TableField(exist = false)
    private Date startDate;
    @TableField(exist = false)
    private Date endDate;
    @TableField(exist = false)
    private List<String> quarter;
}