package com.artfess.device.base.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

/**
 * 设备分组关联vo
 *
 * @company 阿特菲斯信息技术有限公司
 * @author min.wu
 * @since 2022-07-18
 */
@Data
@ApiModel(value="设备统计数量")
public class DeviceCountVo {

    private static final long serialVersionUID = 1L;

    @ApiModelProperty(value = "设备总量")
    private Integer allNum;

    @ApiModelProperty(value = "正常数量")
    private Integer normalNum;

    @ApiModelProperty(value = "故障数量")
    private Integer failureNum;

    @ApiModelProperty(value = "报警数量")
    private Integer warnNum;

    @ApiModelProperty(value = "其它数量")
    private Integer otherNum;

    @ApiModelProperty(value = "报废数量")
    private Integer scrapNum;


}
