懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.base.tenant.service;
2
3 import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
4 import cn.stylefeng.guns.base.tenant.entity.TenantInfo;
5 import cn.stylefeng.guns.base.tenant.model.params.TenantInfoParam;
6 import cn.stylefeng.guns.base.tenant.model.result.TenantInfoResult;
7 import com.baomidou.mybatisplus.extension.service.IService;
8
9 import java.util.List;
10
11 /**
12  * <p>
13  * 租户表 服务类
14  * </p>
15  *
16  * @author stylefeng
17  * @since 2019-06-16
18  */
19 public interface TenantInfoService extends IService<TenantInfo> {
20
21     /**
22      * 新增
23      *
24      * @author stylefeng
25      * @Date 2019-06-16
26      */
27     void add(TenantInfoParam param);
28
29     /**
30      * 删除
31      *
32      * @author stylefeng
33      * @Date 2019-06-16
34      */
35     void delete(TenantInfoParam param);
36
37     /**
38      * 更新
39      *
40      * @author stylefeng
41      * @Date 2019-06-16
42      */
43     void update(TenantInfoParam param);
44
45     /**
46      * 查询单条数据,Specification模式
47      *
48      * @author stylefeng
49      * @Date 2019-06-16
50      */
51     TenantInfoResult findBySpec(TenantInfoParam param);
52
53     /**
54      * 查询列表,Specification模式
55      *
56      * @author stylefeng
57      * @Date 2019-06-16
58      */
59     List<TenantInfoResult> findListBySpec(TenantInfoParam param);
60
61     /**
62      * 查询分页数据,Specification模式
63      *
64      * @author stylefeng
65      * @Date 2019-06-16
66      */
67     LayuiPageInfo findPageBySpec(TenantInfoParam param);
68
69     /**
70      * 获取租户信息,通过code
71      *
72      * @author fengshuonan
73      * @Date 2019-06-19 14:17
74      */
75     TenantInfo getByCode(String code);
76
77 }