1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
 
    private Integer whichDay;
}