12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.huimv.datacollection.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * <p>
- *
- * </p>
- *
- * @author yinhao
- * @date 2021/7/5 15:46
- */
- @Data
- @TableName("dc_device_up_data")
- public class DeviceUpDataEntity implements Serializable {
- private static final long serialVersionUID = -4933550721235784950L;
- @TableId
- private Integer id;
- private String productId;
- private String deviceId;
- private String timestamp;
- private String serviceId;
- private String protocol;
- private String imsi;
- private String imei;
- private String deviceType;
- private String messageType;
- private Integer dataVer;
- private Integer dataTime;
- private Integer dataTemp;
- private Integer dataStc;
- private Integer dataRssi;
- private Integer dataHumi;
- private Integer dataBat;
- private String tenantId;
- private double dataTempConvert;
- private double dataHumiConvert;
- private double dataBatConvert;
- }
|