辽宁功能调整
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user