12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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.time.LocalDateTime;
- 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_device_online")
- public class EnvDeviceOnline implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- private String farmId;
- /**
- * 在线数
- */
- private Integer deviceOn;
- /**
- * 离线数
- */
- private Integer deviceOff;
- /**
- * 月份
- */
- private Integer nowMonth;
- /**
- * 年份
- */
- private Integer nowYear;
- /**
- * 时间
- */
- private LocalDateTime creatTime;
- /**
- * 在线率
- */
- private String onlineRate;
- private String ohter1;
- private String ohter2;
- private String ohter3;
- }
|