2 天以前 f7273277023f3497ac071bf98f556a569cb4dd25
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.pro.bagcode.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.List;
 
@Schema(description = "管理后台 - MES 袋码生成响应")
@Data
public class MesProBagCodeGenerateRespVO {
 
    @Schema(description = "生成组 UUID")
    private String uuid;
 
    @Schema(description = "品种主单位类型", example = "48千克")
    private String type;
 
    @Schema(description = "每托盘袋数(类型为 吨 时为 0)", example = "48")
    private Integer perPallet;
 
    @Schema(description = "本次生成的袋码总数", example = "240")
    private Integer totalCount;
 
    @Schema(description = "自动生成的托盘编号列表(类型为 吨 时为空)")
    private List<Long> palletIds;
}