1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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 lombok.Data;
- import lombok.EqualsAndHashCode;
- import lombok.experimental.Accessors;
- /**
- * <p>
- *
- * </p>
- *
- * @author author
- * @since 2023-03-23
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @Accessors(chain = true)
- @TableName("env_device_other")
- public class EnvDeviceOther 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 LocalDateTime updateTime;
- /**
- * 传感器名字
- */
- private String chipName;
- /**
- * 0:未安装 1:开启 2:关闭 3:异常
- */
- private Integer chipStatus;
- private Integer farmId;
- private String other1;
- private String ohter2;
- private String other3;
- }
|