Lius
2025-06-30 f144f017681eeefc6d09fa2cc2c10add6baf3aea
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
package org.jeecg.modules.mdc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * @Description: 设备倍率报警
 * @Author: jeecg-boot
 * @Date: 2024-01-17
 * @Version: V1.0
 */
@Data
@TableName("EquipmentBeilvAlarm")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "EquipmentBeilvAlarm对象", description = "设备倍率报警")
public class EquipmentBeilvAlarm {
 
    /**
     * 设备编号
     */
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty(value = "设备编号")
    private String equipmentid;
    /**
     * 报警时间
     */
    @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 collecttime;
    /**
     * 设定值
     */
    @Excel(name = "设定值", width = 15)
    @ApiModelProperty(value = "设定值")
    private String setvalue;
    /**
     * 实际值
     */
    @Excel(name = "实际值", width = 15)
    @ApiModelProperty(value = "实际值")
    private String realvalue;
    /**
     * 报警号
     */
    @Excel(name = "报警号", width = 15)
    @ApiModelProperty(value = "报警号")
    private String alarmno;
    /**
     * 报警内容
     */
    @Excel(name = "报警内容", width = 15)
    @ApiModelProperty(value = "报警内容")
    private String alarmcontent;
    /**
     * isexamine
     */
    @Excel(name = "isexamine", width = 15)
    @ApiModelProperty(value = "isexamine")
    private Integer isexamine;
    /**
     * iseffective
     */
    @Excel(name = "iseffective", width = 15)
    @ApiModelProperty(value = "iseffective")
    private Integer iseffective;
    /**
     * examinetime
     */
    @Excel(name = "examinetime", 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 = "examinetime")
    private Date examinetime;
    /**
     * examineperson
     */
    @Excel(name = "examineperson", width = 15)
    @ApiModelProperty(value = "examineperson")
    private String examineperson;
    /**
     * remark
     */
    @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
    private String remark;
}