| | |
| | | package cn.iocoder.yudao.module.mes.controller.admin.pro.bagcode.vo; |
| | | |
| | | import cn.iocoder.yudao.module.mes.controller.admin.pro.pallet.vo.MesProPalletAutoPrintRespVO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | |
| | | @Schema(description = "生成组 UUID") |
| | | private String uuid; |
| | | |
| | | @Schema(description = "本次自动生成的托盘标签;每个标签 copies 固定为 3") |
| | | private List<MesProPalletAutoPrintRespVO> autoPallets; |
| | | @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; |
| | | } |