DataAssessmentMessage.java
2.4 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.skua.modules.assessment.entity;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
/**
* 专家考核评价意见表
*/
@Data
@TableName("data_assessment_message")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="data_assessment_message对象", description="专家考核评价意见表")
public class DataAssessmentMessage {
/**主键ID*/
@TableId(type = IdType.ID_WORKER_STR)
@ApiModelProperty(value = "主键ID")
private String id;
/**月份*/
@Excel(name = "月份", width = 15)
@ApiModelProperty(value = "月份")
private String dataMonth;
/**评价意见*/
@Excel(name = "评价意见", width = 15)
@ApiModelProperty(value = "评价意见")
private String dataRecord;
/**评价项类型*/
@Excel(name = "评价项类型", width = 15)
@ApiModelProperty(value = "评价项类型")
private String msgType;
/**预留状态*/
@Excel(name = "预留状态", width = 15)
@ApiModelProperty(value = "预留状态")
private Integer status;
/**所属厂区*/
@Excel(name = "所属厂区", width = 15)
@ApiModelProperty(value = "所属厂区")
private String factoryId;
/**评价人*/
@Excel(name = "评价人", width = 15)
@ApiModelProperty(value = "评价人")
private String createBy;
/**评价时间*/
@Excel(name = "评价时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "评价时间")
private Date createTime;
/**修改人*/
@Excel(name = "修改人", width = 15)
@ApiModelProperty(value = "修改人")
private String updateBy;
/**修改时间*/
@Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
@ApiModelProperty(value = "修改时间")
private Date updateTime;
private String userId;
}