liu
昨天 00e4d71bd9d504ed25339595690ebe074146b7e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 MesDashboardInventoryRespVO {
 
    @Schema(description = "按仓库分布", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<MesDashboardNameCountRespVO> warehouseDistribution;
 
    @Schema(description = "按品种分布", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<MesDashboardNameCountRespVO> itemDistribution;
 
    @Schema(description = "按库存状态分布(暂存库/合格库/已出库)", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<MesDashboardNameCountRespVO> stateDistribution;
 
}