VideoMonitorVO.java 442 B

12345678910111213141516171819
  1. package com.welampiot.vo;
  2. import com.welampiot.dto.VideoMonitorDTO;
  3. import lombok.Data;
  4. import java.util.List;
  5. @Data
  6. public class VideoMonitorVO {
  7. private List sectionList; // 路段筛选
  8. private Integer limit;
  9. private Integer offset;
  10. private Integer areaId;
  11. private Integer sectionId;
  12. private Integer total;
  13. private Integer onlineCount;
  14. private Integer useCount;
  15. private List<VideoMonitorDTO> list;
  16. }