123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.huimv.env.common.entity;
- import com.baomidou.mybatisplus.annotation.TableName;
- import com.baomidou.mybatisplus.annotation.IdType;
- import com.baomidou.mybatisplus.annotation.TableId;
- import java.time.LocalDateTime;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- * 湿帘
- * </p>
- *
- * @author author
- * @since 2023-07-12
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_device_pad")
- public class EnvDevicePad implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 设备id
- */
- private String deviceCode;
- /**
- * 传感器id
- */
- private String chipCode;
- /**
- * 更新时间
- */
- private Date updateTime;
- /**
- * 传感器名字
- */
- private String chipName;
- /**
- * 0:关闭 1:开启
- */
- private Integer chipStatus;
- /**
- * 值
- */
- private String chipValue;
- private Integer farmId;
- private String other1;
- private String ohter2;
- private String other3;
- }
|