辽宁功能调整

This commit is contained in:
2025-05-08 13:29:55 +08:00
parent 6b9026d427
commit a8d9272e7c
9 changed files with 93 additions and 18 deletions

View File

@@ -0,0 +1,31 @@
package com.njcn.device.pq.pojo.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @Author: cdf
* @CreateTime: 2025-05-08
* @Description: 不同运行状态的终端数量
*/
@Data
public class DevStatusNumVO {
@ApiModelProperty("总数")
private Integer allNum;
@ApiModelProperty("在运数量")
private Integer runNum;
@ApiModelProperty("检修数量")
private Integer checkNum;
@ApiModelProperty("停运数量")
private Integer stopRunNum;
private Integer testNum;
@ApiModelProperty("退役数量")
private Integer quiteNum;
}