添加同步至WMS标识

Signed-off-by: duan.yang <994300880@qq.com>
yun-zuoyi
duan.yang 4 years ago
parent 4d8240c78c
commit 48779edcfc

@ -4,17 +4,12 @@ import cn.estsh.i3plus.pojo.base.bean.BaseBean;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiParam; import io.swagger.annotations.ApiParam;
import lombok.Data; import lombok.Data;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import org.hibernate.annotations.ColumnDefault; import org.hibernate.annotations.ColumnDefault;
import org.hibernate.annotations.DynamicInsert; import org.hibernate.annotations.DynamicInsert;
import org.hibernate.annotations.DynamicUpdate; import org.hibernate.annotations.DynamicUpdate;
import javax.persistence.Column; import javax.persistence.*;
import javax.persistence.Entity;
import javax.persistence.Table;
import javax.persistence.Transient;
/** /**
* @Description : * @Description :
@ -116,6 +111,10 @@ public class SwebPurchaseOrderSn extends BaseBean {
@Column(name = "IS_SYN") @Column(name = "IS_SYN")
private String isSyn; private String isSyn;
@ApiParam("是否同步至WMS")
@Column(name = "IS_SYNC")
private Integer isSync = 2;
@Column(name = "REC_TIME") @Column(name = "REC_TIME")
@ApiParam(value = "收货时间") @ApiParam(value = "收货时间")
private String recTime; private String recTime;

Loading…
Cancel
Save