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; }