WifiVO.java 978 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.WifiDTO;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * ClassName: WifiVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/4/11 - 18:57
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class WifiVO implements Serializable {
  17. /** 云盒总数 **/
  18. private Integer total;
  19. /** 设备总数 **/
  20. private Integer deviceCount;
  21. /** 在线数 **/
  22. private Integer onlineCount;
  23. /** 云盒列表 **/
  24. private List<WifiDTO> list;
  25. private String path;
  26. private static final long serialVersionUID = 1L;
  27. private Integer id;
  28. private String sn;
  29. private int model;
  30. private String ip_addr;
  31. private String remark1;
  32. private String remark2;
  33. private String remark3;
  34. private String remark4;
  35. private String remark5;
  36. private String remark6;
  37. private String install_date;
  38. private String expiration_date;
  39. }