C D F G I L P S U
C
- com.github.fartherp.framework.database.dao - 程序包 com.github.fartherp.framework.database.dao
-
- com.github.fartherp.framework.database.service - 程序包 com.github.fartherp.framework.database.service
-
- com.github.fartherp.framework.database.service.impl - 程序包 com.github.fartherp.framework.database.service.impl
-
- count() - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
do select count(*) mapped id
- count() - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
查找所有记录数量
- count() - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
D
- DaoMapper<T,ID extends Serializable> - com.github.fartherp.framework.database.dao中的接口
-
insert、delete、update、select method SQL of XML Mapper file
Author: CK
Date: 2015/6/5.
- delete(ID) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
删除对象
- delete(ID) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- deleteBatch(List<ID>) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
delete batch
- deleteBatch(List<ID>) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
批量删除对象
- deleteBatch(List<ID>) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- deleteByPrimaryKey(ID) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
delete action by primary key
F
- FieldAccessVo<ID> - com.github.fartherp.framework.database.dao中的类
-
字段操作类
Author: CK
Date: 2015/6/5.
- FieldAccessVo() - 类 的构造器com.github.fartherp.framework.database.dao.FieldAccessVo
-
- findAll() - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
查询所有对象
- findAll() - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- findById(ID) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
通过主键查询对象
- findById(ID) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
G
- GenericService<T,ID> - com.github.fartherp.framework.database.service中的接口
-
Created by IntelliJ IDEA.
- GenericSqlMapServiceImpl<T extends FieldAccessVo<ID>,ID extends Serializable> - com.github.fartherp.framework.database.service.impl中的类
-
XML配置Service实现
Author: CK
Date: 2015/6/5.
- GenericSqlMapServiceImpl() - 类 的构造器com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- getDao() - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
I
- insert(T) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
do insert entity
- insertBatch(List<T>) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
save batch
- insertSelective(T) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
do insert entity ignore null property
L
- logger - 类 中的变量com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
P
- primaryKey() - 类 中的方法com.github.fartherp.framework.database.dao.FieldAccessVo
-
get primary key
S
- saveBatch(List<T>) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
批量保存
- saveBatch(List<T>) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- saveEntity(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
保存对象
- saveEntity(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- saveEntitySelective(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
保存对象不为空的属性值(其余为数据库的默认值)
- saveEntitySelective(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- saveOrUpdate(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
保存或更新(如果对象已存在)
- saveOrUpdate(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- saveOrUpdateSelective(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
保存或更新(如果对象已存在)
- saveOrUpdateSelective(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- selectAll() - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
find all records
- selectByPrimaryKey(ID) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
find entity by primary key
U
- updateByPrimaryKey(T) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
update entity by primary key
- updateByPrimaryKeySelective(T) - 接口 中的方法com.github.fartherp.framework.database.dao.DaoMapper
-
update entity by primary key ignore null property
- updateEntity(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
更新对象的所有属性
- updateEntity(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
- updateEntitySelective(T) - 接口 中的方法com.github.fartherp.framework.database.service.GenericService
-
更新对象不为空的属性值
- updateEntitySelective(T) - 类 中的方法com.github.fartherp.framework.database.service.impl.GenericSqlMapServiceImpl
-
C D F G I L P S U
Copyright © 2019. All rights reserved.