package com.artfess.device.base.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * @author min.wu
 * @date 2022/08/15 16:53
 */
@ApiModel(value = "统计Vo对象")
@Data
public class CountVo {

    @ApiModelProperty(value = "状态名称")
    private String statusName;

    @ApiModelProperty(value = "设备个数")
    private Integer count = 0;


}
