package com.doumee.dao.web.response.platformReport;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* 园区安防设备
|
*
|
* @Author : Rk
|
* @create 2024/10/25 10:59
|
*/
|
@Data
|
public class SecurityDeviceDataVO {
|
|
@ApiModelProperty(value = "设备类型")
|
private String deviceType;
|
|
@ApiModelProperty(value = "总数")
|
private Integer totalNum;
|
|
@ApiModelProperty(value = "在线数量")
|
private Integer onlineNum;
|
|
@ApiModelProperty(value = "离线数量")
|
private Integer offlineDeviceNum;
|
|
|
}
|