|
|
|
@ -2,6 +2,7 @@ package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.annotation.AnnoOutputColumn;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.WmsEnumUtil;
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
@ -69,15 +70,14 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer autoInit;
|
|
|
|
|
|
|
|
|
|
// 1=true, 2 = false
|
|
|
|
|
@Column(name = "IS_COMMIT_REF_MOVE", nullable = false)
|
|
|
|
|
@ApiParam(value = "是否连带提交创建状态移动单", example = "2")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer isCommitRefMove;
|
|
|
|
|
@Column(name = "COMMIT_MODE", nullable = false)
|
|
|
|
|
@ApiParam(value = "提交移动单模式")
|
|
|
|
|
@AnnoOutputColumn(refClass = WmsEnumUtil.GROUP_COMMIT_MODE.class)
|
|
|
|
|
private Integer commitMode;
|
|
|
|
|
|
|
|
|
|
// 1=true, 2 = false
|
|
|
|
|
@Column(name = "IS_AUTO_COMMIT", nullable = false)
|
|
|
|
|
@ApiParam(value = "是否自动提交", example = "1")
|
|
|
|
|
@ApiParam(value = "是否自动提交")
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private Integer isAutoCommit;
|
|
|
|
|
|
|
|
|
@ -102,8 +102,8 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
return this.endAmId == null ? 0 : this.endAmId.longValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getIsCommitRefMoveVal() {
|
|
|
|
|
return this.isCommitRefMove == null ? 0 : this.isCommitRefMove.intValue();
|
|
|
|
|
public int getCommitModeVal() {
|
|
|
|
|
return this.commitMode == null ? 0 : this.commitMode.intValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getIsAutoCommitVal() {
|
|
|
|
|