DeviceUpDataEntity.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.huimv.datacollection.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. /**
  7. * <p>
  8. *
  9. * </p>
  10. *
  11. * @author yinhao
  12. * @date 2021/7/5 15:46
  13. */
  14. @Data
  15. @TableName("dc_device_up_data")
  16. public class DeviceUpDataEntity implements Serializable {
  17. private static final long serialVersionUID = -4933550721235784950L;
  18. @TableId
  19. private Integer id;
  20. private String productId;
  21. private String deviceId;
  22. private String timestamp;
  23. private String serviceId;
  24. private String protocol;
  25. private String imsi;
  26. private String imei;
  27. private String deviceType;
  28. private String messageType;
  29. private Integer dataVer;
  30. private Integer dataTime;
  31. private Integer dataTemp;
  32. private Integer dataStc;
  33. private Integer dataRssi;
  34. private Integer dataHumi;
  35. private Integer dataBat;
  36. private String tenantId;
  37. private double dataTempConvert;
  38. private double dataHumiConvert;
  39. private double dataBatConvert;
  40. }