生产报工JOB出错没有更新状态+流程修改初始化组件没有重新加载组件+流程管家:加上可设置是否提交逻辑

yun-zuoyi
许心洁 5 years ago
parent 3fe50125ae
commit 7d63a933c0

@ -75,6 +75,12 @@ public class WmsActionGroup extends BaseBean {
@AnnoOutputColumn
private Integer isCommitRefMove;
// 1=true, 2 = false
@Column(name = "IS_AUTO_COMMIT", nullable = false)
@ApiParam(value = "是否自动提交", example = "1")
@AnnoOutputColumn
private Integer isAutoCommit;
@Lob
@Column(name = "POSITION")
@ApiParam(value = "GOJS位置")
@ -99,6 +105,11 @@ public class WmsActionGroup extends BaseBean {
public int getIsCommitRefMoveVal() {
return this.isCommitRefMove == null ? 0 : this.isCommitRefMove.intValue();
}
public int getIsAutoCommitVal() {
return this.isCommitRefMove == null ? 0 : this.isCommitRefMove.intValue();
}
public int getAutoInitVal() {
return this.autoInit == null ? 0 : this.autoInit.intValue();
}

Loading…
Cancel
Save