123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.huimv.guowei.admin.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.util.Date;
- import java.io.Serializable;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- *
- * </p>
- *
- * @author author
- * @since 2023-06-01
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_warning_info")
- public class EnvWarningInfo implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 1.温度 2.湿度
- */
- private Integer warningType;
- /**
- * 报警内容
- */
- private String warningContent;
- /**
- * 位置
- */
- private String buildLocation;
- /**
- * 位置名字
- */
- private String unitName;
- /**
- * 单元id
- */
- private Integer unitId;
- /**
- * 设备id
- */
- private String deviceId;
- /**
- * 日期
- */
- private Date date;
- private Integer farmId;
- private String other1;
- private String other2;
- private String other3;
- }
|