|
|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 库存移动单明细信息
|
|
|
|
@ -105,4 +106,20 @@ public class WmsMoveDetails extends BaseBean {
|
|
|
|
|
@Column(name="REF_SRC")
|
|
|
|
|
@ApiParam("关联单号")
|
|
|
|
|
public String refSrc;
|
|
|
|
|
|
|
|
|
|
@ApiParam("待出库数量")
|
|
|
|
|
@Transient
|
|
|
|
|
private long waitingCounts;
|
|
|
|
|
|
|
|
|
|
@ApiParam("已出库数量")
|
|
|
|
|
@Transient
|
|
|
|
|
private long finishedCounts;
|
|
|
|
|
|
|
|
|
|
public WmsMoveDetails(){}
|
|
|
|
|
|
|
|
|
|
public WmsMoveDetails(String partNo, long waitingCounts ,long finishedCounts){
|
|
|
|
|
this.partNo = partNo;
|
|
|
|
|
this.waitingCounts = waitingCounts;
|
|
|
|
|
this.finishedCounts = finishedCounts;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|