12345678910111213141516171819 |
- package com.welampiot.vo;
- import com.welampiot.dto.VideoMonitorDTO;
- import lombok.Data;
- import java.util.List;
- @Data
- public class VideoMonitorVO {
- private List sectionList; // 路段筛选
- private Integer limit;
- private Integer offset;
- private Integer areaId;
- private Integer sectionId;
- private Integer total;
- private Integer onlineCount;
- private Integer useCount;
- private List<VideoMonitorDTO> list;
- }
|