- Fetch - org.beetl.sql.fetch.annotation中的注释类型
-
作用于在pojo上,表示需要fetch操作
{@code
- FetchAction - org.beetl.sql.fetch中的接口
-
完成fetch操作,execute方法内部需要先判断是否已经Fetch过,避免无限循环,参考FetchAction
- FetchContext - org.beetl.sql.fetch中的类
-
- FetchContext() - 类 的构造器org.beetl.sql.fetch.FetchContext
-
- FetchMany - org.beetl.sql.fetch.annotation中的注释类型
-
{@code
- FetchManyAction - org.beetl.sql.fetch中的类
-
该类的某些属性可以通过再次查询获取
{@code
public class User{
private Long id;
private Long departmentId
- FetchManyAction(PropertyDescriptorWrap, PropertyDescriptorWrap) - 类 的构造器org.beetl.sql.fetch.FetchManyAction
-
- fetchMore(ExecuteContext, List, Annotation) - 类 中的方法org.beetl.sql.fetch.DefaultBeanFetch
-
- FetchOne - org.beetl.sql.fetch.annotation中的注释类型
-
该类的某些属性可以通过再次查询获取
{@code
- FetchOneAction - org.beetl.sql.fetch中的类
-
该类的某些属性可以通过属性再次查询获取
{@code
public class User{
private Long id;
private Long departmentId
- FetchOneAction(PropertyDescriptorWrap) - 类 的构造器org.beetl.sql.fetch.FetchOneAction
-
以User例子来说
- FetchSql - org.beetl.sql.fetch.annotation中的注释类型
-
{@code
- FetchSqlAction - org.beetl.sql.fetch中的类
-
- FetchSqlAction() - 类 的构造器org.beetl.sql.fetch.FetchSqlAction
-
- find(Class, Object) - 类 中的方法org.beetl.sql.fetch.FetchContext
-
- findIdProperty(Class, SQLManager) - 类 中的方法org.beetl.sql.fetch.DefaultBeanFetch
-