EquipmentStatisticsCountVO.java
758 字节
package com.skua.modules.equipment.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @auther kangwei
* @create 2024-12-27-15:32
*/
@Data
@ApiModel(value = "设备统计数量对象", description = "设备统计数量对象")
public class EquipmentStatisticsCountVO {
@ApiModelProperty(value = "厂站名称")
private String departName;
@ApiModelProperty(value = "厂站编号")
private String departId;
@ApiModelProperty(value = "主要设备(B类)")
private String categoryValue1;
@ApiModelProperty(value = "重要设备(A类)")
private String categoryValue2;
@ApiModelProperty(value = "一般设备(C类)")
private String categoryValue3;
}