【KT-1346 增加拉动任务的暂停和开启】

yun-zuoyi
陈思洁 6 years ago
parent 9f0a1e8ce0
commit 1f1f6ec825

@ -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();
}
} }
Loading…
Cancel
Save