2 天以前 f7273277023f3497ac071bf98f556a569cb4dd25
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/bagcode/vo/MesProBagCodeGenerateRespVO.java
@@ -3,10 +3,24 @@
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;
}