123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- package com.szwl.model.bean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class EquipmentVo {
- /**
- * 设备唯一码
- */
- private String clientId;
- /**
- * 管理系统ID
- */
- private String managerId;
- /**
- * 柜内温度
- */
- private String cabinetTm;
- /**
- * 柜内湿度
- */
- private String cabinetHd;
- /**
- *炉头温度
- */
- private String furnaceTm;
- /**
- *音量
- */
- private String volume;
- /**
- * 炉头转速
- */
- private String furnaceSp;
- /**
- * 联网方式
- *
- */
- private String netWorkingMode;
- /**
- * 上一次心跳时间
- */
- @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
- private Date lastUpdateTime;
- /**
- * 经度
- */
- private Double longitude;
- /**
- * 维度
- */
- private Double latitude;
- /**
- * 睡眠状态 睡眠为true,不睡眠false
- */
- private Boolean is_sleep;
- /**
- * 设备状态 开机为1,关机为0
- */
- public Integer eqeStatus;
- /**
- * 实际上设备id
- */
- private String gtClientId;
- /**
- *白糖
- */
- private String whiteSugar;
- /**
- *红糖
- */
- private String redSugar;
- /**
- 黄糖
- blueSugar:蓝糖
- stick:棍
- water:水
- wasteWater:废水
- */
- private String yellowSugar;
- /**
- * 蓝糖
- */
- private String blueSugar;
- /**
- * 棍
- */
- private String stick;
- /**
- * 水
- */
- private String water;
- /**
- * 废水
- */
- private String wasteWater;
- /**
- * 是否启用物料监控功能,0:不启用,1:启用
- */
- private String isMaterialUse;
- @ApiModelProperty(value = "杯子数量")
- private Long cupQuantity;
- @ApiModelProperty(value = "搅拌温度")
- private String stirTm;
- @ApiModelProperty(value = "玉米发生器温度")
- private String cornGeneratorTm;
- }
|