package org.sxkj.fw.device.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @Description 设备统计
|
* @Author AIX
|
* @Date 2026/1/14 11:30
|
* @Version 1.0
|
*/
|
@Data
|
public class DeviceTypeStatisticsVO {
|
|
/**
|
* 设备类型
|
*/
|
@ApiModelProperty(value = "设备类型")
|
private String deviceType;
|
/**
|
* 设备类型名称
|
*/
|
@ApiModelProperty(value = "设备类型名称")
|
private String deviceTypeValue;
|
/**
|
* 数量
|
*/
|
@ApiModelProperty(value = "数量")
|
private Integer deviceCount;
|
/**
|
* 总数量
|
*/
|
@ApiModelProperty(value = "总数量")
|
private Integer totalDevices;
|
|
}
|