IPlusService.java
850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//package com.huaheng.framework.mybatisPlus;
//
//import com.baomidou.mybatisplus.mapper.EntityWrapper;
//import com.baomidou.mybatisplus.plugins.Page;
//import com.baomidou.mybatisplus.service.AutoService;
//import java.util.List;
//import java.util.Map;
//
//
//public interface IPlusService<T> extends IService<T> {
//
// T selectFirstEntity(T entity) ;
//
//
// List<T> selectListEntityByEqual(T entity) ;
//
//
// List<Map<String, Object>> selectListMapByEqual(T entity, String SqlSelect) ;
//
//
// Page<Map<String, Object>> selectMapsPage(Page page, T entity) ;
//
//
// Page<T> selectPage(Page<T> page, T entity) ;
//
//
// Integer selectCount(T entity) ;
//
//
// boolean updateByCondition(T record, T condition) ;
//
//
// boolean delete(T entity) ;
//
//
// <T> EntityWrapper getWrapper (T entity) ;
//}