NetworkVO.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.NetworkDTO;
  3. import lombok.Data;
  4. import org.springframework.web.multipart.MultipartFile;
  5. import java.util.List;
  6. /**
  7. * ClassName: NetworkVO
  8. * Package: com.welampiot.vo
  9. * Description:
  10. *
  11. * @Author: zhj_Start
  12. * @Create: 2023/6/1 - 11:10
  13. * @Version: v1.0
  14. */
  15. @Data
  16. public class NetworkVO {
  17. private Integer id;
  18. private String networkId;
  19. private String regPack;
  20. private Integer loopCount;
  21. private String username;
  22. private String networkName;
  23. private String deviceSn;
  24. private Integer protocolType; // 协议类型
  25. private String protocolTypeStr;
  26. private String model;
  27. private String area;
  28. private String section;
  29. private Integer areaId;
  30. private Integer sectionId;
  31. private String longitude;
  32. private String latitude;
  33. private String simCard;
  34. private String operator;
  35. private Integer freBandInfo;
  36. private String freBandInfoStr;
  37. private List<NetworkDTO> list;
  38. private Integer page;
  39. private Integer count;
  40. private Integer version;
  41. private String keyword;
  42. private String path;
  43. private Integer expirationStatus;
  44. private List<String> sectionList;
  45. private Integer total;
  46. private MultipartFile file;
  47. private Integer type;
  48. private List<NetworkDTO> simData;
  49. private List<Object> msg;
  50. }