|
|
|
@ -16,6 +16,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
|
import java.sql.JDBCType;
|
|
|
|
|
|
|
|
|
@ -122,11 +123,15 @@ public class FieldInfo extends BaseAPS {
|
|
|
|
|
private Boolean notEmpty;
|
|
|
|
|
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
@Transient
|
|
|
|
|
private transient Class<? extends BaseBean> clazz;
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
@Transient
|
|
|
|
|
private transient Class<?> typeClass;
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
@Transient
|
|
|
|
|
private transient Method getMethod;
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
@Transient
|
|
|
|
|
private transient Method setMethod;
|
|
|
|
|
}
|
|
|
|
|