package com.ycl.platform.domain.entity;
|
|
import annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 考核结果对象 t_check_result
|
*
|
* @author ruoyi
|
* @date 2024-04-01
|
*/
|
@TableName("t_contract_result")
|
@Data
|
public class ContractResult {
|
private static final long serialVersionUID = 1L;
|
|
private Long id;
|
|
@Excel(name = "考核对象")
|
private Long unitId;
|
|
@Excel(name = "运维合同")
|
private Long contractId;
|
|
@Excel(name = "考核发布")
|
private Long publishId;
|
|
@Excel(name = "考核分数")
|
private BigDecimal score;
|
|
@Excel(name = "是否发布")
|
private Integer publish;
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
@Excel(name = "考核时间", width = 30, dateFormat = "yyyy-MM-dd")
|
private Date checkTime;
|
|
@TableLogic
|
private Integer deleted;
|
|
private Date updateTime;
|
|
private Integer whichYear;
|
private Integer whichMonth;
|
}
|