|
|
|
@ -9,6 +9,7 @@ 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;
|
|
|
|
|
|
|
|
|
@ -121,6 +122,11 @@ public class BasVendor extends BaseBean{
|
|
|
|
|
@DynamicField(webFieldType = CommonEnumUtil.FIELD_TYPE.NUMBER, isRequire = 2)
|
|
|
|
|
private Integer firstLogin;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SYNC")
|
|
|
|
|
@ApiParam("是否同步 1-是,2-否,3-同步失败")
|
|
|
|
|
@ColumnDefault("2")
|
|
|
|
|
private Integer isSync;
|
|
|
|
|
|
|
|
|
|
public BasVendor() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|