| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.welampiot.vo;
- import com.welampiot.dto.NetworkDTO;
- import lombok.Data;
- import org.springframework.web.multipart.MultipartFile;
- import java.util.List;
- /**
- * ClassName: NetworkVO
- * Package: com.welampiot.vo
- * Description:
- *
- * @Author: zhj_Start
- * @Create: 2023/6/1 - 11:10
- * @Version: v1.0
- */
- @Data
- public class NetworkVO {
- private Integer id;
- private String networkId;
- private String regPack;
- private Integer loopCount;
- private String username;
- private String networkName;
- private String deviceSn;
- private Integer protocolType; // 协议类型
- private String protocolTypeStr;
- private String model;
- private String area;
- private String section;
- private Integer areaId;
- private Integer sectionId;
- private String longitude;
- private String latitude;
- private String simCard;
- private String operator;
- private Integer freBandInfo;
- private String freBandInfoStr;
- private List<NetworkDTO> list;
- private Integer page;
- private Integer count;
- private Integer version;
- private String keyword;
- private String path;
- private Integer expirationStatus;
- private List<String> sectionList;
- private Integer total;
- private MultipartFile file;
- private Integer type;
- private List<NetworkDTO> simData;
- private List<Object> msg;
- }
|