“linengliang”
2023-09-14 5706372636fb594320db25d2e2aab8b94e3ef294
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
package org.jeecg.modules.eam.entity;
 
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecg.common.constant.CommonConstant;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("mom_eam_predictive_work_plan_parameter_history")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
public class PredictiveWorkPlanParameterHistory extends JeecgEntity implements Serializable {
 
    @Excel(name = "维护方案ID", width = 15)
    @ApiModelProperty(value = "维护方案ID")
    private String workPlanId;
 
    private String workOrderId;
 
    @Excel(name = "参数ID", width = 30)
    @ApiModelProperty(value = "参数ID")
    private String parameterId;
 
    @Excel(name = "参数代码", width = 30)
    @ApiModelProperty(value = "参数代码")
    private String parameterCode;
 
    @Excel(name = "参数名称", width = 30)
    @ApiModelProperty(value = "参数名称")
    private String parameterName;
 
    @Excel(name = "上限值", width = 15)
    @ApiModelProperty(value = "上限值")
    private float upperLimitValue;
 
    @Excel(name = "下限值", width = 15)
    @ApiModelProperty(value = "下限值")
    private float lowerLimitValue;
 
    @Excel(name = "实际值", width = 15)
    @ApiModelProperty(value = "实际值")
    private float actualValue;
 
    private String parameterUnit;
 
    @Excel(name = "条件", width = 15)
    @ApiModelProperty(value = "条件")
    @Dict(dicCode = "conditional_relation")
    private String parameterCondition;
 
    @Excel(name = "监测时间", width = 15)
    @ApiModelProperty(value = "监测时间")
    private Date collectTime;
 
    @Excel(name = "删除状态(0-正常,1-已删除)", width = 15)
    @ApiModelProperty(value = "删除状态(0-正常,1-已删除)")
    @TableLogic
    private Integer delFlag = CommonConstant.DEL_FLAG_0;
 
}