WifiInfoVO.java 750 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.WifiDeviceDTO;
  3. import lombok.Data;
  4. import java.util.List;
  5. /**
  6. * ClassName: WifiInfoVO
  7. * Package: com.welampiot.vo
  8. * Description:
  9. *
  10. * @Author: zhj_Start
  11. * @Create: 2023/6/25 - 19:03
  12. * @Version: v1.0
  13. */
  14. @Data
  15. public class WifiInfoVO {
  16. private String wifiId;
  17. private Integer wifiStatus;
  18. private String wifiNet;
  19. private String wifiModel;
  20. private String wifiName;
  21. private String wifiPwd;
  22. private String wifiVersion;
  23. private Integer wifiType;
  24. private Integer totalOnlineCount;
  25. private Long totalFlow;
  26. private Integer dayOnlineCount;
  27. private Integer dayFlow;
  28. private Integer netType;
  29. private List<WifiDeviceDTO> deviceList;
  30. }