懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package cn.stylefeng.guns.base.db.service;
 
import cn.stylefeng.guns.base.db.entity.DatabaseInfo;
import cn.stylefeng.guns.base.db.model.params.DatabaseInfoParam;
import cn.stylefeng.guns.base.db.model.result.DatabaseInfoResult;
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 数据库信息表 服务类
 * </p>
 *
 * @author stylefeng
 * @since 2019-06-15
 */
public interface DatabaseInfoService extends IService<DatabaseInfo> {
 
    /**
     * 新增
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    void add(DatabaseInfoParam param);
 
    /**
     * 删除
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    void delete(DatabaseInfoParam param);
 
    /**
     * 更新
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    void update(DatabaseInfoParam param);
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    DatabaseInfoResult findBySpec(DatabaseInfoParam param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    List<DatabaseInfoResult> findListBySpec(DatabaseInfoParam param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author stylefeng
     * @Date 2019-06-15
     */
    LayuiPageInfo findPageBySpec(DatabaseInfoParam param);
 
}