| package com.doumee.dao.business.vo; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2025/1/8 15:32 | 
|  */ | 
| @Data | 
| public class YwDeviceStatusDataVO { | 
|   | 
|   | 
|     @ApiModelProperty(value = "正常数量", example = "1") | 
|     private Integer workAmount; | 
|   | 
|     @ApiModelProperty(value = "异常数量", example = "1") | 
|     private Integer exceptionAmount; | 
|   | 
|     @ApiModelProperty(value = "报废数量", example = "1") | 
|     private Integer errAmount; | 
|   | 
|     @ApiModelProperty(value = "累计总数", example = "1") | 
|     private Integer amount; | 
|   | 
| } |