|
@@ -68,10 +68,6 @@ public class TableFieldInfo implements Constants {
|
|
* 字段策略【 默认,自判断 null 】
|
|
* 字段策略【 默认,自判断 null 】
|
|
*/
|
|
*/
|
|
private final FieldStrategy fieldStrategy;
|
|
private final FieldStrategy fieldStrategy;
|
|
- /**
|
|
|
|
- * 标记该字段属于哪个类
|
|
|
|
- */
|
|
|
|
- private final Class<?> clazz;
|
|
|
|
/**
|
|
/**
|
|
* 是否进行 select 查询
|
|
* 是否进行 select 查询
|
|
* <p>大字段可设置为 false 不加入 select 查询范围</p>
|
|
* <p>大字段可设置为 false 不加入 select 查询范围</p>
|
|
@@ -117,7 +113,6 @@ public class TableFieldInfo implements Constants {
|
|
this.propertyType = field.getType();
|
|
this.propertyType = field.getType();
|
|
this.isCharSequence = StringUtils.isCharSequence(this.propertyType);
|
|
this.isCharSequence = StringUtils.isCharSequence(this.propertyType);
|
|
this.fieldFill = tableField.fill();
|
|
this.fieldFill = tableField.fill();
|
|
- this.clazz = field.getDeclaringClass();
|
|
|
|
this.update = tableField.update();
|
|
this.update = tableField.update();
|
|
this.el = el;
|
|
this.el = el;
|
|
tableInfo.setLogicDelete(this.initLogicDelete(dbConfig, field));
|
|
tableInfo.setLogicDelete(this.initLogicDelete(dbConfig, field));
|
|
@@ -162,7 +157,6 @@ public class TableFieldInfo implements Constants {
|
|
this.el = field.getName();
|
|
this.el = field.getName();
|
|
this.fieldStrategy = dbConfig.getFieldStrategy();
|
|
this.fieldStrategy = dbConfig.getFieldStrategy();
|
|
this.setCondition(dbConfig);
|
|
this.setCondition(dbConfig);
|
|
- this.clazz = field.getDeclaringClass();
|
|
|
|
tableInfo.setLogicDelete(this.initLogicDelete(dbConfig, field));
|
|
tableInfo.setLogicDelete(this.initLogicDelete(dbConfig, field));
|
|
|
|
|
|
String column = field.getName();
|
|
String column = field.getName();
|