|
|
@ -58,9 +58,15 @@ public class WmsPullTaskMaster extends BaseBean{
|
|
|
|
@ApiParam(value = "单据状态", example = "0")
|
|
|
|
@ApiParam(value = "单据状态", example = "0")
|
|
|
|
private Integer orderStatus = 0;
|
|
|
|
private Integer orderStatus = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name="IS_SUSPEND")
|
|
|
|
|
|
|
|
@ApiParam(value = "是否暂停", example = "0")
|
|
|
|
|
|
|
|
private Integer isSuspend = 2;
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getOrderStatus() {
|
|
|
|
public Integer getOrderStatus() {
|
|
|
|
return orderStatus == null ? 0 : this.orderStatus.intValue();
|
|
|
|
return orderStatus == null ? 0 : this.orderStatus.intValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getIsSuspend() {
|
|
|
|
|
|
|
|
return isSuspend == null ? 0 : this.isSuspend.intValue();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|