1. 设置 is_sync 字段不允许为空,默认值为 2

yun-zuoyi
于学杰 6 years ago
parent 35f92b05e3
commit e7bd528736

@ -1,6 +1,7 @@
package cn.estsh.i3plus.pojo.wms.bean;
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam;
import lombok.Data;
@ -148,9 +149,9 @@ public class WmsMoveToERP extends BaseBean {
@ApiParam("交易类型")
public Integer busiTypeCode;
@Column(name = "IS_SYNC")
@Column(name = "IS_SYNC", nullable = false)
@ApiParam("是否同步")
public Integer isSync;
public Integer isSync = CommonEnumUtil.FALSE;
@ApiParam(value = "待出库数量", example = "0")
@Transient

Loading…
Cancel
Save