23 changed files with 735 additions and 309 deletions
@ -0,0 +1,65 @@
|
||||
package com.logpm.warehouse.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
public class TaskPackagelistVO { |
||||
|
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
@ApiModelProperty(value = "订单自编号") |
||||
private String orderCode; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "订单自编号") |
||||
private String orderPackageCode; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "订单自编号") |
||||
private String waybillNub; |
||||
|
||||
/** |
||||
* 库位信息 |
||||
*/ |
||||
@ApiModelProperty(value = "订单自编号") |
||||
private String allocation; |
||||
|
||||
/** |
||||
* 当前状态 只能是在库 |
||||
*/ |
||||
@ApiModelProperty(value = "当前状态 只能是在库") |
||||
private String currentStatus; |
||||
|
||||
/** |
||||
* 订单号 |
||||
*/ |
||||
@ApiModelProperty(value = "订单号") |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ApiModelProperty(value = "数量") |
||||
private Integer quantity; |
||||
|
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ApiModelProperty(value = "物料名称") |
||||
private String materialName; |
||||
|
||||
/** |
||||
* 物料编码 |
||||
*/ |
||||
@ApiModelProperty(value = "物料编码") |
||||
private String materialCode; |
||||
|
||||
|
||||
|
||||
} |
Loading…
Reference in new issue