4 天以前 06321d70dd7617fdc7d475b190e629143fec3263
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package cn.iocoder.yudao.module.mes.controller.admin.home.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
@Schema(description = "管理后台 - MES 基础数据与一袋一码 首页汇总统计 Response VO")
@Data
public class MesBagCodeHomeSummaryRespVO {
 
    // ========== 基础数据 ==========
 
    @Schema(description = "品种总数(mdm_item)", requiredMode = Schema.RequiredMode.REQUIRED, example = "100")
    private Long mdmItemCount;
 
    @Schema(description = "MES 品种数(mes_md_item)", requiredMode = Schema.RequiredMode.REQUIRED, example = "80")
    private Long mesItemCount;
 
    @Schema(description = "品种分类数", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
    private Long itemTypeCount;
 
    @Schema(description = "计量单位数", requiredMode = Schema.RequiredMode.REQUIRED, example = "20")
    private Long unitMeasureCount;
 
    // ========== 一袋一码 ==========
 
    @Schema(description = "产线数", requiredMode = Schema.RequiredMode.REQUIRED, example = "5")
    private Long lineCount;
 
    @Schema(description = "批次总数", requiredMode = Schema.RequiredMode.REQUIRED, example = "30")
    private Long batchCount;
 
    @Schema(description = "袋码总数", requiredMode = Schema.RequiredMode.REQUIRED, example = "5000")
    private Long bagCodeCount;
 
    @Schema(description = "托盘码总数", requiredMode = Schema.RequiredMode.REQUIRED, example = "800")
    private Long palletCount;
 
    // ========== 状态分布 ==========
 
    @Schema(description = "批次状态分布")
    private List<MesBagCodeHomeStatusRespVO> batchStatusList;
 
    @Schema(description = "袋码状态分布")
    private List<MesBagCodeHomeStatusRespVO> bagCodeStatusList;
 
}