InspectionPlan.java
4.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.skua.modules.inspection.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.skua.core.aspect.annotation.Dict;
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("inspection_plan")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="inspection_plan对象", description="巡检计划")
public class InspectionPlan {
/**主键*/
@TableId(type = IdType.ID_WORKER_STR)
@ApiModelProperty(value = "主键")
private String id;
/**计划名称*/
@Excel(name = "计划名称", width = 15)
@ApiModelProperty(value = "计划名称")
private String planName;
/**任务类型(1:周期任务,2:单次常规任务)*/
@Excel(name = "任务类型(1:周期任务,2:单次常规任务)", width = 15)
@ApiModelProperty(value = "任务类型(1:周期任务,2:单次常规任务)")
@Dict(dicCode = "inspection_task_type")
private String taskType;
/**计划开始时间*/
@Excel(name = "计划开始时间", width = 15, format = "yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern="yyyy-MM-dd")
@ApiModelProperty(value = "计划开始时间")
private java.util.Date planStartDate;
/**计划结束时间*/
@Excel(name = "计划结束时间", width = 15, format = "yyyy-MM-dd")
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
@DateTimeFormat(pattern="yyyy-MM-dd")
@ApiModelProperty(value = "计划结束时间")
private java.util.Date planEndDate;
/**计划任务开始时间*/
@Excel(name = "计划任务开始时间", width = 15)
@ApiModelProperty(value = "计划任务开始时间")
private String planTaskStartTime;
/**持续时间(h)*/
@Excel(name = "持续时间(h)", width = 15)
@ApiModelProperty(value = "持续时间(h)")
private String continueTime;
/**任务时长(h)*/
@Excel(name = "任务时长(h)", width = 15)
@ApiModelProperty(value = "任务时长(h)")
private String taskDuration;
/**版块类型*/
@Excel(name = "版块类型", width = 15)
@ApiModelProperty(value = "版块类型")
private String moduleType;
/**机构ID*/
@Excel(name = "机构ID", width = 15)
@ApiModelProperty(value = "机构ID")
@Dict(dicCode = "id",dictTable="sys_depart",dicText="depart_name")
private String departId;
/**班组ID*/
@Excel(name = "班组ID", width = 15)
@ApiModelProperty(value = "班组ID")
@Dict(dictTable = "inspection_working_group", dicCode = "id", dicText = "group_name")
private String inspectionWorkingGroupId;
/**创建时间*/
@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 java.util.Date createTime;
/**创建用户ID*/
@Excel(name = "创建用户ID", width = 15)
@ApiModelProperty(value = "创建用户ID")
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 java.util.Date updateTime;
/**修改用户ID*/
@Excel(name = "修改用户ID", width = 15)
@ApiModelProperty(value = "修改用户ID")
private String updateBy;
/**所属部门*/
@Excel(name = "所属部门", width = 15)
@ApiModelProperty(value = "所属部门")
private String createDept;
/**所属公司*/
@Excel(name = "所属公司", width = 15)
@ApiModelProperty(value = "所属公司")
private String createCmpy;
/**删除标识(0:删除,1:有效)*/
@Excel(name = "删除标识(0:删除,1:有效)", width = 15)
@ApiModelProperty(value = "删除标识(0:删除,1:有效)")
private Integer delFlag;
}