|
|
|
@ -1,19 +1,16 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.sweb.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;
|
|
|
|
|
import javax.persistence.Inheritance;
|
|
|
|
|
import javax.persistence.InheritanceType;
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.ColumnDefault;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description :
|
|
|
|
@ -81,4 +78,8 @@ public class SwebDocMovementSn extends BaseBean {
|
|
|
|
|
@ApiParam("供应商名称")
|
|
|
|
|
@Column(name = "VENDOR_NAME")
|
|
|
|
|
private String vendorName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SYNC", nullable = false)
|
|
|
|
|
@ApiParam("是否同步")
|
|
|
|
|
public Integer isSync = CommonEnumUtil.FALSE;
|
|
|
|
|
}
|
|
|
|
|