| | |
| | | package com.vincent.rsf.openApi.entity.params; |
| | | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import javax.validation.constraints.NotNull; |
| | | |
| | | @Data |
| | | @Accessors(chain = true) |
| | |
| | | public class WmsOrderItemParam { |
| | | |
| | | @ApiModelProperty("物料编码") |
| | | private String matnrCode; |
| | | private String matnr; |
| | | |
| | | @ApiModelProperty("物料名称") |
| | | private String maktx; |
| | |
| | | @ApiModelProperty("条形码") |
| | | private String barcode; |
| | | |
| | | // 基本单位 |
| | | private String baseUnitId; |
| | | // 计价单位 |
| | | private String priceUnitId; |
| | | // 建议目标仓库 |
| | | private String palletId; |
| | | // 调出仓 |
| | | private String targetWareHouseId; |
| | | // 业务日期,对账使用,时间戳,精确到秒 |
| | | private String sourceWareHouseId; |
| | | // 入库类型 |
| | | private String inStockType; |
| | | // 货主类型 |
| | | private String ownerTypeId; |
| | | // 货主 |
| | | private String ownerId; |
| | | // 货主名称 |
| | | private String ownerName; |
| | | // 保管者类型 |
| | | private String keeperTypeId; |
| | | // 保管者 |
| | | private String keeperId; |
| | | // 保管者名称 |
| | | private String keeperName; |
| | | |
| | | } |