jiangping
2024-12-05 f6ba5de2578c58a738f35b29a708c523ccb518ba
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
 
 
}