You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
600 B

1 year ago
  1. package com.whhj.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * @author lxg
  6. * @date 2024/10/20 22:08
  7. **/
  8. @Getter
  9. @Setter
  10. public class DeviceInfo{
  11. /**
  12. * 命令类型
  13. */
  14. private Integer commandType;
  15. /**
  16. * 设备sn
  17. */
  18. private String sn;
  19. /**
  20. * 上报时间
  21. */
  22. private Integer reportTime;
  23. /**
  24. * 心率
  25. */
  26. private Integer heartRate;
  27. /**
  28. * 呼吸值
  29. */
  30. private Integer breath;
  31. /**
  32. * 状态
  33. */
  34. private Integer status;
  35. /**
  36. * 电量
  37. */
  38. private Integer electricity;
  39. }