package cn.iocoder.yudao.module.mes.controller.admin.dashboard.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.util.List;
|
|
/**
|
* 管理后台 - 管理驾驶舱质检维度统计 Response VO
|
*
|
* @author 超级管理员
|
*/
|
@Schema(description = "管理后台 - 管理驾驶舱质检维度统计 Response VO")
|
@Data
|
public class MesDashboardQualityRespVO {
|
|
@Schema(description = "检验结果分布(处理中/合格/不合格)", requiredMode = Schema.RequiredMode.REQUIRED)
|
private List<MesDashboardNameCountRespVO> resultDistribution;
|
|
@Schema(description = "四项指标均值与合格率", requiredMode = Schema.RequiredMode.REQUIRED)
|
private List<MesDashboardIndicatorAvgRespVO> indicatorList;
|
|
}
|