1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.ycl.service.smoke;
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ycl.entity.smoke.OdsCustomer;
|
| /**
| * <p>
| * 组织架构 服务类
| * </p>
| *
| * @author lyq
| * @since 2023-02-28
| */
| public interface IOdsCustomerService extends IService<OdsCustomer> {
|
| Page<OdsCustomer> findList(String keyword, Integer pageSize, Integer pageNum);
| }
|
|