【领料上线扫描时,在扫描完条码后将目标库位带出。

】bug7024
yun-zuoyi
puxiao.liao 5 years ago
parent f800d3dd7b
commit 4f1455012f

@ -12,6 +12,7 @@ import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.*;
import java.util.Objects;
/**
* @Description :()
@ -258,4 +259,17 @@ public class WmsDocMovementDetails extends BaseBean {
@Column(name = "IS_SN")
@ApiParam(value = "条码生成状态", example = "20")
public Integer isSn;
public WmsDocMovementDetails () {
}
public WmsDocMovementDetails (String orderNo, String srcZoneNo, String destZoneNo, String destLocateNo) {
this.orderNo = orderNo;
this.srcZoneNo = srcZoneNo;
this.destZoneNo = destZoneNo;
this.destLocateNo = destLocateNo;
}
}

Loading…
Cancel
Save