JavaScript is disabled on your browser.
Skip navigation links
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
A
B
C
D
E
F
G
I
J
L
M
N
O
P
Q
R
S
T
U
A
addColumn(String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
B
baseDao
- Variable in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
对应的Dao层对象
BaseDaoImpl
<
T
extends
Serializable
,
PK
extends
Serializable
> - Class in
com.centit.framework.jdbc.dao
针对 EntityWithDeleteTag EntityWithVersionTag 这个jpa类只做了一个浅层实现。 如果需要循环处理引用可以调用 OrmDaoUtils.*Cascade*()相关的方法 自行实现
BaseDaoImpl()
- Constructor for class com.centit.framework.jdbc.dao.
BaseDaoImpl
BaseEntityManager
<
T
extends
Serializable
,
PK
extends
Serializable
> - Interface in
com.centit.framework.jdbc.service
BaseEntityManagerImpl
<
T
extends
Serializable
,
PK
extends
Serializable
,
D
extends
BaseDaoImpl
<
T
,
PK
>> - Class in
com.centit.framework.jdbc.service
数据库的基本操作工具类 基本上是对Dao进行再一次简单的封装 注解Manager,添加默认事务
BaseEntityManagerImpl()
- Constructor for class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
batchDeleteObjects(BaseDaoImpl<?, ?>, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
批量删除对象
batchDeleteObjects(JdbcTemplate, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
批量删除对象
batchMergeObjects(BaseDaoImpl<?, ?>, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
保存或者更新任意对象 ,每次都先判断是否存在
batchMergeObjects(JdbcTemplate, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
保存或者更新任意对象 ,每次都先判断是否存在
batchSaveNewObjects(BaseDaoImpl<?, ?>, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
保存任意对象
batchSaveNewObjects(JdbcTemplate, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
保存任意对象
batchUpdateObject(BaseDaoImpl<?, ?>, Collection<String>, T, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
批量修改对象
batchUpdateObject(BaseDaoImpl<?, ?>, String[], T, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
批量修改对象
batchUpdateObject(BaseDaoImpl<?, ?>, Class<?>, Map<String, Object>, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
批量修改 对象
batchUpdateObject(JdbcTemplate, Collection<String>, T, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
批量修改对象
batchUpdateObject(JdbcTemplate, String[], T, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
批量修改对象
batchUpdateObject(JdbcTemplate, Class<?>, Map<String, Object>, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
批量修改 对象
batchUpdateObjects(BaseDaoImpl<?, ?>, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
更新任意对象
batchUpdateObjects(JdbcTemplate, Collection<? extends Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
更新任意对象
buildFilterByParams(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
buildQueryByParams(Map<String, Object>, Collection<String>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
buildQueryByParamsWithFields(Map<String, Object>, Collection<String>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
C
calcNextVersion()
- Method in interface com.centit.framework.core.po.
EntityWithVersionTag
计算下一个版本号,版本号可以为任何类型,但是必须支持sql语句中的 =
callFunction(BaseDaoImpl<?, ?>, String, int, Object...)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
callFunction(JdbcTemplate, String, int, Object...)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
callProcedure(BaseDaoImpl<?, ?>, String, Object...)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
callProcedure(JdbcTemplate, String, Object...)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
CodeBook
- Class in
com.centit.framework.core.dao
CodeBook()
- Constructor for class com.centit.framework.core.dao.
CodeBook
collectRequestParameters(HttpServletRequest)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
com.centit.framework.core.controller
- package com.centit.framework.core.controller
com.centit.framework.core.dao
- package com.centit.framework.core.dao
com.centit.framework.core.po
- package com.centit.framework.core.po
com.centit.framework.jdbc.dao
- package com.centit.framework.jdbc.dao
com.centit.framework.jdbc.service
- package com.centit.framework.jdbc.service
countObjectByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 对数据库中的数据进行计数
countObjectByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 对数据库中的数据进行计数
createSequence(String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
createTable(TableInfo)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
D
DatabaseOptUtils
- Class in
com.centit.framework.jdbc.dao
意图将BaseDao中公共的部分独立出来,减少类的函数数量, 因为每一个继承BaseDaoImpl的类都有这些函数,而这些行数基本上都是一样的
DatabaseOptUtils()
- Constructor for class com.centit.framework.jdbc.dao.
DatabaseOptUtils
DDLOperationsWork
- Class in
com.centit.framework.jdbc.dao
DDLOperationsWork()
- Constructor for class com.centit.framework.jdbc.dao.
DDLOperationsWork
DDLOperationsWork(BaseDaoImpl<?, ?>)
- Constructor for class com.centit.framework.jdbc.dao.
DDLOperationsWork
deleteObject(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObject(T)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
删除泛型参数对象
deleteObject(T)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
删除泛型参数对象
deleteObjectById(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectById(Object)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
deleteObjectById(PK)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据主键删除泛型参数对象
deleteObjectById(PK)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
根据主键删除泛型参数对象
deleteObjectForce(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectForceById(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectReference(T, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectReferenceForce(T, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectReferences(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectReferencesForce(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjects(List<Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
deleteObjectsAsTabulation(String, Object)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
deleteObjectsAsTabulation(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
deleteObjectsByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectsByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectsByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
deleteObjectsForceByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
deleteObjectsForceByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
doExecuteNamedSql(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
doExecuteNamedSql(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
doExecuteNamedSql(String, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
doExecuteSql(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
doExecuteSql(BaseDaoImpl<?, ?>, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
doExecuteSql(JdbcTemplate, String)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
doExecuteSql(JdbcTemplate, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
doExecuteSql(String)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
doExecuteSql(String, Object[])
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
dropColumn(String, String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
dropTable(String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
E
encapsulateFilterToFields(Collection<String>, String, String, boolean)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
encapsulateFilterToSql(String, String, String, String, boolean)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
EntityWithDeleteTag
- Interface in
com.centit.framework.core.po
PO实体需要实现这个接口,在执行删除操作时自动设置一个逻辑删除标记, 不会真正的从数据库汇中删除, 当然前提条件是你调用Dao中的接口删除,而不是直接删除
EntityWithVersionTag
- Interface in
com.centit.framework.core.po
PO实体实现这个接口, 用于版本根新 目前只有jdbc 中实现这个接口
EQUAL_HQL_ID
- Static variable in class com.centit.framework.core.dao.
CodeBook
execute(JsonObjectDao)
- Method in interface com.centit.framework.jdbc.dao.
JsonDaoExecuteWork
executeRealWork(JsonDaoExecuteWork<T>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
ExtendedQueryPool
- Class in
com.centit.framework.core.dao
Created by codefan on 17-8-27.
ExtendedQueryPool()
- Constructor for class com.centit.framework.core.dao.
ExtendedQueryPool
ExtendedQueryPoolController
- Class in
com.centit.framework.core.controller
ExtendedQueryPoolController()
- Constructor for class com.centit.framework.core.controller.
ExtendedQueryPoolController
extraPoAllFieldNames(Class<?>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
获取 类的所有字段
extraPoAllFieldNamesAsArray(Class<?>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
获取 类的所有字段
F
fetchObjectLazyColumn(T, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
fetchObjectLazyColumns(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
fetchObjectReference(T, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
fetchObjectReferences(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
fetchObjectReferencesCascade(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
fetchObjectsCount(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
fetchPageDescParams(Map<String, Object>)
- Static method in class com.centit.framework.core.dao.
QueryParameterPrepare
Deprecated.
fetchSelfOrderSql(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
findObjectsAsJSON(String, Object[], String[])
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsAsJSON(String, Object[], String[], int, int)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsByNamedSql(String, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsByNamedSql(String, Map<String, Object>, int, int)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsByNamedSqlAsJSON(String, Map<String, Object>, String[])
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsByNamedSqlAsJSON(String, Map<String, Object>, String[], int, int)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsBySql(String, Object[])
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
findObjectsBySql(String, Object[], int, int)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
G
getConnection()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
getCurrentDao()
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
getDataSource()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
获取数据源 这个一般不要使用
getDBtype()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getDDLOperations()
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
getExtendedSql(String)
- Static method in class com.centit.framework.core.dao.
ExtendedQueryPool
getFilterField()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
每个dao都要初始化filterField这个对象,在 getFilterField 初始化,并且返回
getJdbcTemplate()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
获取spring jdbc 的 jdbcTemplate
getObjectById(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getObjectById(Object)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
getObjectById(PK)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据对象的主键 获得数据库中对应的对象信息
getObjectById(PK)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
根据对象的主键 获得数据库中对应的对象信息
getObjectByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getObjectByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getObjectByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
getObjectByProperties(Map<String, Object>)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据多个属性返回唯一对象
getObjectByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
根据多个属性返回唯一对象
getObjectByProperty(String, Object)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据唯一属性值返回对象
getObjectByProperty(String, Object)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
根据唯一属性值返回对象
getObjectBySqlAsJson(BaseDaoImpl<?, ?>, String, Object[], String[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getObjectBySqlAsJson(BaseDaoImpl<?, ?>, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getObjectBySqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>, String[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getObjectBySqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getObjectBySqlAsJson(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getObjectBySqlAsJson(JdbcTemplate, String, Object[], String[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getObjectBySqlAsJson(JdbcTemplate, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getObjectBySqlAsJson(JdbcTemplate, String, Map<String, Object>, String[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getObjectBySqlAsJson(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getObjectBySqlAsJson(JdbcTemplate, String)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getObjectCascadeById(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
getObjectExcludeLazyById(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getObjectWithReferences(Object)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getPkClass()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getPoClass()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
getScalarObjectQuery(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getScalarObjectQuery(BaseDaoImpl<?, ?>, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getScalarObjectQuery(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getScalarObjectQuery(BaseDaoImpl<?, ?>, String, Object)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getScalarObjectQuery(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getScalarObjectQuery(JdbcTemplate, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getScalarObjectQuery(JdbcTemplate, String)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getScalarObjectQuery(JdbcTemplate, String, Object)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getSequenceNextValue(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
getSequenceNextValue(JdbcTemplate, String)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
getSequenceNextValue(String)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
getTableInfo()
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
I
IN_HQL_ID
- Static variable in class com.centit.framework.core.dao.
CodeBook
insertObjectsAsTabulation(List<Map<String, Object>>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
isDeleted()
- Method in interface com.centit.framework.core.po.
EntityWithDeleteTag
判断是否为已删除
J
jdbcTemplate
- Variable in class com.centit.framework.jdbc.dao.
BaseDaoImpl
JdbcTemplateUtils
- Class in
com.centit.framework.jdbc.dao
意图将BaseDao中公共的部分独立出来,减少类的函数数量, 因为每一个继承BaseDaoImpl的类都有这些函数,而这些行数基本上都是一样的
JdbcTemplateUtils()
- Constructor for class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
JsonDaoExecuteWork
<
T
> - Interface in
com.centit.framework.jdbc.dao
JsonObjectWork
- Class in
com.centit.framework.jdbc.dao
JsonObjectWork()
- Constructor for class com.centit.framework.jdbc.dao.
JsonObjectWork
JsonObjectWork(TableInfo)
- Constructor for class com.centit.framework.jdbc.dao.
JsonObjectWork
JsonObjectWork(BaseDaoImpl<?, ?>, TableInfo)
- Constructor for class com.centit.framework.jdbc.dao.
JsonObjectWork
L
LIKE_HQL_ID
- Static variable in class com.centit.framework.core.dao.
CodeBook
listObjects()
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
查询所有数据
listObjects()
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
查找表中的所有记录, 包括禁用的 isValid = 'F' 的记录, 如果没有isValid这个字段也可以使用
listObjects()
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
查找表中的所有记录, 包括禁用的 isValid = 'F' 的记录, 如果没有isValid这个字段也可以使用
listObjectsAsJson(Map<String, Object>, PageDesc)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
查询数据库,只能查询Po对应的表
listObjectsAsJson(Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
listObjectsByFilter(String, Object[], String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
listObjectsByFilter(String, Map<String, Object>, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
由于性能问题,不推荐使用这个方法,分页查询一般都是用于前端展示的,建议使用 listObjectsByFilterAsJson
listObjectsByFilter(String, Object[])
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据条件查询对象
listObjectsByFilter(String, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据条件查询对象
listObjectsByFilterAsJson(String, Map<String, Object>, String, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByFilterAsJson(String, Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByFilterAsJson(String, Object[], String, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByFilterAsJson(String, Object[], PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByNamedSql(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSql(BaseDaoImpl<?, ?>, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSql(BaseDaoImpl<?, ?>, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSql(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSql(JdbcTemplate, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSql(JdbcTemplate, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, String[], String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, String[], Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, String[], Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, String[], String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, String[], Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, String[], Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByNamedSqlAsJson(JdbcTemplate, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, String[], String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
参数驱动sql查询
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, String[], Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, String[], Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsByParamsDriverSqlAsJson(BaseDaoImpl<?, ?>, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
参数驱动sql查询
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, String[], String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
参数驱动sql查询
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, String[], Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, String[], Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, Map<String, Object>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsByParamsDriverSqlAsJson(JdbcTemplate, String, Map<String, Object>, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
参数驱动sql查询
listObjectsByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
listObjectsByProperties(Map<String, Object>, int, int)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
listObjectsByProperties(Map<String, Object>, PageDesc)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据过滤条件筛选
listObjectsByProperties(Map<String, Object>)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据属性筛选 严格等于
listObjectsByProperties(Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
Deprecated.
listObjectsByProperties(Map<String, Object>)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
listObjectsByPropertiesAsJson(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 驱动查询
listObjectsByPropertiesAsJson(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByPropertiesAsJson(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 驱动查询
listObjectsByPropertiesAsJson(Map<String, Object>, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByPropertiesAsJson(Map<String, Object>, Collection<String>, QueryUtils.IFilterTranslater, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 驱动查询
listObjectsByPropertiesAsJson(Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsByProperty(String, Object)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
根据属性筛选 严格等于
listObjectsByProperty(String, Object)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
listObjectsBySql(String, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsBySql(String, Object[])
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsBySql(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySql(BaseDaoImpl<?, ?>, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySql(BaseDaoImpl<?, ?>, String, String, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySql(BaseDaoImpl<?, ?>, String, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySql(BaseDaoImpl<?, ?>, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySql(JdbcTemplate, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySql(JdbcTemplate, String, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySql(JdbcTemplate, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, String[], String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, String[], Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, String[], Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, Object[], String[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(BaseDaoImpl<?, ?>, String, PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
listObjectsBySqlAsJson(JdbcTemplate, String, String[], String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, String[], Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, String[], Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, Object[], String[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, Object[])
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(JdbcTemplate, String, Object[], PageDesc)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
listObjectsBySqlAsJson(String, Map<String, Object>, PageDesc)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
查询数据库,可以查询任意表
listObjectsBySqlAsJson(String, Map<String, Object>, PageDesc)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>, Collection<String>, QueryUtils.IFilterTranslater)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>, Collection<String>, QueryUtils.IFilterTranslater, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>, Collection<String>, QueryUtils.IFilterTranslater, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 驱动查询
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>, int, int)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
listObjectsPartFieldByPropertiesAsJson(Map<String, Object>, Collection<String>, PageDesc)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
根据 前端传入的参数 驱动查询
loadExtendedSqlMap(InputStream, DBType)
- Static method in class com.centit.framework.core.dao.
ExtendedQueryPool
loadExtendedSqlMaps(String, DBType)
- Static method in class com.centit.framework.core.dao.
ExtendedQueryPool
loadResourceExtendedSqlMap(DBType)
- Static method in class com.centit.framework.core.dao.
ExtendedQueryPool
logger
- Variable in class com.centit.framework.core.controller.
ExtendedQueryPoolController
logger
- Static variable in class com.centit.framework.jdbc.dao.
BaseDaoImpl
logger
- Static variable in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
logger
- Static variable in class com.centit.framework.jdbc.dao.
DDLOperationsWork
logger
- Static variable in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
logger
- Static variable in class com.centit.framework.jdbc.dao.
JsonObjectWork
logger
- Variable in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
M
makeAddColumnSql(String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeCreateSequenceSql(String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeCreateTableSql(TableInfo, boolean)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeCreateViewSql(String, String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeDropColumnSql(String, String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeDropTableSql(String)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeModifyColumnSql(String, TableField, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeMybatisOrderByParam(Map<String, Object>, Class<?>...)
- Static method in class com.centit.framework.core.dao.
QueryParameterPrepare
Deprecated.
这个方法只是为了在框架中和 MyBatis 排序兼容,所对应的PO必须有jpa注解
makeReconfigurationColumnSqls(String, String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
makeRenameColumnSql(String, String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
mergeObject(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
mergeObject(Collection<String>, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
更改部分属性
mergeObject(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
mergeObject(T)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
保存泛型参数对象
mergeObject(T)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
保存泛型参数对象
modifyColumn(String, TableField, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
MYBATIS_ORDER_FIELD
- Static variable in class com.centit.framework.core.dao.
CodeBook
这个参数只给 MyBatis 使用
N
NO_PARAM_FIX
- Static variable in class com.centit.framework.core.dao.
CodeBook
O
obtainInsideFilters(TableMapInfo)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
每个dao都需要重载这个函数已获得自定义的查询条件,否则listObjects、pageQuery就等价与listObjectsByProperties 根据 getFilterField 中的内容初始化
obtainVersionProperty()
- Method in interface com.centit.framework.core.po.
EntityWithVersionTag
返回记录版本的属性,这个属性必须和数据库表中的某个字段对应, 也就是说这个属性必须有 @Column
ORDER_BY_HQL_ID
- Static variable in class com.centit.framework.core.dao.
CodeBook
默认的排序,放到 filterField 中
P
prepPageParams(Map<String, Object>, PageDesc, int)
- Static method in class com.centit.framework.core.dao.
QueryParameterPrepare
Deprecated.
处理翻页参数
Q
QueryParameterPrepare
- Class in
com.centit.framework.core.dao
Deprecated.
QueryParameterPrepare()
- Constructor for class com.centit.framework.core.dao.
QueryParameterPrepare
Deprecated.
R
reconfigurationColumn(String, String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
releaseConnection(Connection)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
reloadExtendedSqlMap()
- Method in class com.centit.framework.core.controller.
ExtendedQueryPoolController
重新load Sql ExtendedMap
renameColumn(String, String, TableField)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
replaceObjectsAsTabulation(BaseDaoImpl<?, ?>, List<T>, List<T>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
replaceObjectsAsTabulation(BaseDaoImpl<?, ?>, Class<?>, List<Map<String, Object>>, List<Map<String, Object>>)
- Static method in class com.centit.framework.jdbc.dao.
DatabaseOptUtils
replaceObjectsAsTabulation(JdbcTemplate, List<T>, List<T>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
replaceObjectsAsTabulation(JdbcTemplate, Class<?>, List<Map<String, Object>>, List<Map<String, Object>>)
- Static method in class com.centit.framework.jdbc.dao.
JdbcTemplateUtils
replaceObjectsAsTabulation(List<Map<String, Object>>, List<Map<String, Object>>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
replaceObjectsAsTabulation(List<Map<String, Object>>, String, Object)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
replaceObjectsAsTabulation(List<Map<String, Object>>, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
S
saveNewObject(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
saveNewObject(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
saveNewObject(T)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
保存泛型参数对象
saveNewObject(T)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
保存泛型参数对象
saveNewObjectAndFetchGeneratedKeys(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
saveNewObjectCascade(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
saveObjectReference(T, String)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
saveObjectReferences(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
SELF_ORDER_BY
- Static variable in class com.centit.framework.core.dao.
CodeBook
用户自定义排序描述, 放到 filterDesc 中
setAppHome(String)
- Method in class com.centit.framework.core.controller.
ExtendedQueryPoolController
setBaseDao(BaseDaoImpl<?, ?>)
- Method in class com.centit.framework.jdbc.dao.
DDLOperationsWork
setBaseDao(BaseDaoImpl<?, ?>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
setBaseDao(D)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
setDataSource(DataSource)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Set the JDBC DataSource to obtain connections from.
setDeleted(boolean)
- Method in interface com.centit.framework.core.po.
EntityWithDeleteTag
设置删除标志
setJdbcUrl(String)
- Method in class com.centit.framework.core.controller.
ExtendedQueryPoolController
setTableInfo(TableInfo)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
T
TABLE_SORT_FIELD
- Static variable in class com.centit.framework.core.dao.
CodeBook
用户自定义排序字段 , 放到 filterDesc 中
TABLE_SORT_ORDER
- Static variable in class com.centit.framework.core.dao.
CodeBook
用户自定义排序字段的排序顺序 , 放到 filterDesc 中
U
updateObject(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
updateObject(Collection<String>, T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
只更改对象的部分属性
updateObject(String[], T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
只更改对象的部分属性
updateObject(Collection<String>, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
更改部分属性
updateObject(Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
updateObject(T)
- Method in interface com.centit.framework.jdbc.service.
BaseEntityManager
更新泛型参数对象
updateObject(T)
- Method in class com.centit.framework.jdbc.service.
BaseEntityManagerImpl
更新泛型参数对象
updateObjectCascade(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
Deprecated.
updateObjectsByProperties(Map<String, Object>, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
updateObjectsByProperties(Collection<String>, Map<String, Object>, Map<String, Object>)
- Method in class com.centit.framework.jdbc.dao.
JsonObjectWork
根据条件批量更新 对象
updateObjectWithNullField(T, boolean)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
updateObjectWithNullField(T)
- Method in class com.centit.framework.jdbc.dao.
BaseDaoImpl
A
B
C
D
E
F
G
I
J
L
M
N
O
P
Q
R
S
T
U
Skip navigation links
Overview
Package
Class
Use
Tree
Deprecated
Index
Help
Prev
Next
Frames
No Frames
All Classes
Copyright © 2024
江苏南大先腾信息产业股份有限公司
. All rights reserved.