接口 DaoMapper
-
@Mapper public interface DaoMapper
-
-
方法概要
-
-
-
方法详细资料
-
insert
void insert(@Param("contextInstance") EntityContextInstance contextInstance)
-
batchInsert
void batchInsert(@Param("context") EntityContext context, @Param("contextInstanceList") List<EntityContextInstance> contextInstanceList)
-
deleteById
void deleteById(@Param("contextInstance") EntityContextInstance contextInstance)
-
batchDeleteById
void batchDeleteById(@Param("context") EntityContext context, @Param("contextInstanceList") List<EntityContextInstance> contextInstanceList)
-
selectByIds
List<Map<String,Object>> selectByIds(@Param("context") EntityContext context, @Param("idList") List<Object> idList, @Param("selectColumnList") List<String> selectColumnList, @Param("orderList") List<Order> orderList)
-
select
List<Map<String,Object>> select(@Param("contextInstance") EntityContextInstance contextInstance, @Param("selectColumnList") List<String> selectColumnList, @Param("orderList") List<Order> orderList)
-
selectFirst
Map<String,Object> selectFirst(@Param("contextInstance") EntityContextInstance contextInstance, @Param("selectColumnList") List<String> selectColumnList, @Param("orderList") List<Order> orderList)
-
batchSelect
List<Map<String,Object>> batchSelect(@Param("context") EntityContext context, @Param("contextInstanceList") List<EntityContextInstance> contextInstanceList, @Param("selectColumnList") List<String> selectColumnList, @Param("orderList") List<Order> orderList)
-
selectUnion
List<Map<String,Object>> selectUnion(@Param("contextInstance") EntityContextInstance contextInstance, @Param("selectColumnList") List<String> selectColumnList, @Param("orderList") List<Order> orderList)
-
updateById
void updateById(@Param("contextInstance") EntityContextInstance contextInstance)
-
updateByIds
void updateByIds(@Param("contextInstance") EntityContextInstance contextInstance, @Param("idList") List<Object> idList)
-
batchUpdateByIds
void batchUpdateByIds(@Param("context") EntityContext context, @Param("contextInstanceList") List<EntityContextInstance> contextInstanceList, @Param("updateColumnList") List<String> updateColumnList)
-
count
int count(@Param("contextInstance") EntityContextInstance contextInstance)
-
batchCount
int batchCount(@Param("context") EntityContext context, @Param("contextInstanceList") List<EntityContextInstance> contextInstanceList)
-
-