yun-zuoyi
zcg 5 years ago
commit d8f6a5273c

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