【麦格纳问题】

yun-zuoyi
曾贞一 5 years ago
parent 3c4239c66a
commit 6ba2d2826a

@ -74,9 +74,9 @@ public class WmsCSRange extends BaseBean {
@ApiParam(value = "库存数量", example = "0") @ApiParam(value = "库存数量", example = "0")
public Double qty; public Double qty;
@Column(name = "LOT_NO", nullable = false) @Column(name = "LOT_NO")
@ApiParam("收货批次") @ApiParam("收货批次")
public String lotNo = ""; public String lotNo;
@Transient @Transient
@ApiParam("存储区编号组") @ApiParam("存储区编号组")

@ -466,4 +466,13 @@ public class WmsDocMovementDetails extends BaseBean {
this.custNo = custNo; this.custNo = custNo;
} }
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo,Integer priority,String createDatetime) {
this.orderNo = orderNo;
this.srcZoneNo = srcZoneNo;
this.destZoneNo = destZoneNo;
this.destLocateNo = destLocateNo;
this.priority = priority;
this.createDatetime = createDatetime;
}
} }

Loading…
Cancel
Save