|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|