package cn.iocoder.yudao.module.mes.controller.admin.pro.pallet.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - MES 自动托盘打印标签")
|
@Data
|
public class MesProPalletAutoPrintRespVO {
|
|
@Schema(description = "托盘编号")
|
private Long id;
|
@Schema(description = "托盘码")
|
private String code;
|
@Schema(description = "批次编号")
|
private Long batchId;
|
@Schema(description = "批次号")
|
private String batchCode;
|
@Schema(description = "批次内托盘序号")
|
private Integer palletNo;
|
@Schema(description = "标签打印份数")
|
private Integer copies;
|
@Schema(description = "可装袋数")
|
private Integer capacity;
|
@Schema(description = "已装袋数")
|
private Integer bagCount;
|
@Schema(description = "品种编号")
|
private Long itemId;
|
@Schema(description = "品种编码")
|
private String itemCode;
|
@Schema(description = "品种名称")
|
private String itemName;
|
@Schema(description = "品种规格")
|
private String itemSpecification;
|
@Schema(description = "产线编码")
|
private String lineCode;
|
@Schema(description = "产线名称")
|
private String lineName;
|
@Schema(description = "生产日期")
|
private LocalDateTime produceDate;
|
@Schema(description = "责任人用户编号")
|
private Long ownerUserId;
|
@Schema(description = "责任人昵称")
|
private String ownerUserName;
|
}
|