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 MesDashboardOutboundRespVO {
|
|
@Schema(description = "出库按日趋势", requiredMode = Schema.RequiredMode.REQUIRED)
|
private List<MesDashboardDailyCountRespVO> trend;
|
|
@Schema(description = "按经销商出库分布(TOP 20)", requiredMode = Schema.RequiredMode.REQUIRED)
|
private List<MesDashboardNameCountRespVO> dealerDistribution;
|
|
}
|