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 deviceList; }