12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package com.welampiot.vo;
- import com.welampiot.dto.WifiDTO;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * ClassName: WifiVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/4/11 - 18:57
- * @Version: v1.0
- */
- @Data
- public class WifiVO implements Serializable {
- /** 云盒总数 **/
- private Integer total;
- /** 设备总数 **/
- private Integer deviceCount;
- /** 在线数 **/
- private Integer onlineCount;
- /** 云盒列表 **/
- private List<WifiDTO> list;
- private String path;
- private static final long serialVersionUID = 1L;
- private Integer id;
- private String sn;
- private int model;
- private String ip_addr;
- private String remark1;
- private String remark2;
- private String remark3;
- private String remark4;
- private String remark5;
- private String remark6;
- private String install_date;
- private String expiration_date;
- }
|