123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- package com.xy.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import lombok.experimental.Accessors;
- import java.time.LocalDateTime;
- /**
- * <p>
- * 设备-状态
- * </p>
- *
- * @author lijin
- * @since 2022-12-23
- */
- @Data
- @Accessors(chain = true)
- @TableName("device_status")
- public class DeviceStatus {
- @TableId
- private Long deviceId;
- /**
- * 系统启动时间
- */
- private LocalDateTime sysStartTime;
- /**
- * 系统当前时间
- */
- private LocalDateTime sysCurTime;
- /**
- * 机器是否通电
- */
- private Integer sysPower;
- /**
- * WIFI是否打开
- */
- private Integer wifiOpen;
- /**
- * 蓝牙是否打开
- */
- private Integer bloothOpen;
- /**
- * 联网状态
- */
- private Integer netState;
- /**
- * 联网类型
- */
- private String netType;
- /**
- * 联网信号强度
- */
- private Integer netDbm;
- /**
- * 左柜门状态
- */
- private Integer doorStateL;
- /**
- * 右柜门状态
- */
- private Integer doorStateR;
- /**
- * 左柜门锁状态
- */
- private Integer lockStateL;
- /**
- * 右柜门锁状态
- */
- private Integer lockStateR;
- /**
- * 温度值
- */
- private Integer tempValue;
- /**
- * 温控仪状态
- */
- private Integer tempState;
- /**
- * 音量
- */
- private Integer voiceVolume;
- /**
- * 主灯状态
- */
- private Integer lightMain;
- /**
- * 副灯状态
- */
- private Integer lightSecond;
- /**
- * 磁盘空间
- */
- private Integer diskSpace;
- /**
- * 磁盘剩余空间
- */
- private Integer diskRemainSpace;
- /**
- * 内存容量
- */
- private Integer memerySpace;
- /**
- * 内存剩余容量
- */
- private Integer memeryRemainSpace;
- /**
- * 左柜主摄像头状态
- */
- private Integer cameraLMainState;
- /**
- * 左柜副摄像头状态
- */
- private Integer cameraLSecondState;
- /**
- * 右柜主摄像头状态
- */
- private Integer cameraRMainState;
- /**
- * 右柜副摄像头状态
- */
- private Integer cameraRSecondState;
- /**
- * 左门锁机状态
- */
- private Integer deviceStateL;
- /**
- * 右门锁机状态
- */
- private Integer deviceStateR;
- /**
- * 更新时间
- */
- private LocalDateTime updateTime;
- /**
- * 设备商品在售库存数
- */
- private Integer stock;
- /**
- * 最近一次补货后的库存数
- */
- private Integer afterFillStock;
- /**
- * 缺货状态
- */
- private Integer stockStatus;
- /**
- * 是否使用电池
- */
- private Boolean isUseBattery;
- /**
- * 是否可交易
- */
- private Boolean isPay;
- /**
- * 机柜左门状态
- */
- private Integer jg1LockStateL;
- /**
- * 机柜右门状态
- */
- private Integer jg1LockStateR;
- }
|