12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.welampiot.vo;
- import com.welampiot.dto.WifiDeviceDTO;
- import lombok.Data;
- import java.util.List;
- /**
- * ClassName: WifiInfoVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/6/25 - 19:03
- * @Version: v1.0
- */
- @Data
- public class WifiInfoVO {
- private String wifiId;
- private Integer wifiStatus;
- private String wifiNet;
- private String wifiModel;
- private String wifiName;
- private String wifiPwd;
- private String wifiVersion;
- private Integer wifiType;
- private Integer totalOnlineCount;
- private Long totalFlow;
- private Integer dayOnlineCount;
- private Integer dayFlow;
- private Integer netType;
- private List<WifiDeviceDTO> deviceList;
- }
|