xiangpei
2024-07-22 bb7c0d979cc614e1e28f2a56cf75fc4b905edb97
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
package com.ycl.platform.domain.vo;
 
import annotation.Excel;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import lombok.experimental.Accessors;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author gonghl
 */
@Data
@Accessors(chain = true)
public class ContractResultVO {
    private Long id;
 
    private Long unitId;
 
    @Excel(name = "考核对象")
    private String unitName;
 
    private Long contractId;
 
    @Excel(name = "运维合同")
    private String contractName;
 
    private Long publishId;
 
    @Excel(name = "考核分数", scale = 2)
    private BigDecimal score;
 
    @Excel(name = "是否发布", readConverterExp = "0=未发布,1=已发布")
    private Integer publish;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "考核时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date checkTime;
 
    private Integer deleted;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date updateTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createStartTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createEndTime;
 
}