| | |
| | | package com.doumee.dao.web.response.platformReport; |
| | | |
| | | import com.doumee.core.haikang.model.param.respose.PageRegionInfoResponse; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.apache.commons.lang3.StringUtils; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | import java.util.Objects; |
| | | |
| | | /** |
| | | * 监控点集合 |
| | |
| | | @Data |
| | | public class CarmeraListVO { |
| | | |
| | | @ApiModelProperty(value = "监控点名称") |
| | | @ApiModelProperty(value = "设备名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "唯一索引") |
| | |
| | | private Integer withCameras; |
| | | @ApiModelProperty(value = "设备状态:不在线,1-在线") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "是否强制刷新 0否 1是") |
| | | private int refresh; |
| | | @ApiModelProperty(value = "设备状态描述") |
| | | private String statusName; |
| | | @ApiModelProperty(value = "设备所在位置") |
| | | private String regionName; |
| | | } |