|
|
|
@ -81,6 +81,12 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer isAutoCommit;
|
|
|
|
|
|
|
|
|
|
// 1=true, 2 = false
|
|
|
|
|
@Column(name = "IS_RESET_ABLE", columnDefinition = "int default 1", nullable = false)
|
|
|
|
|
@ApiParam(value = "是否允许重置")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer isResetAble;
|
|
|
|
|
|
|
|
|
|
@Lob
|
|
|
|
|
@Column(name = "POSITION", columnDefinition = "TEXT")
|
|
|
|
|
@ApiParam(value = "GOJS位置")
|
|
|
|
@ -114,7 +120,11 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
return this.autoInit == null ? 0 : this.autoInit.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int geSubmitStepSeqVal() {
|
|
|
|
|
public int getSubmitStepSeqVal() {
|
|
|
|
|
return this.submitStepSeq == null ? 0 : this.submitStepSeq.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getIsResetAbleVal() {
|
|
|
|
|
return this.isResetAble == null ? 0 : this.isResetAble.intValue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|