提交 5c6487ed 编写于 作者: 刘兴

查询所有客户功能的服务层开启新增分页功能

上级 e0e36ba5
package com.hqyj.seven.service;
import com.hqyj.seven.pojo.Customer;
import com.hqyj.seven.pojo.PageData;
import java.util.List;
......@@ -12,7 +13,7 @@ public interface CustomerService {
Customer queryById(int customerId);
//查询所有客户信息
List<Customer> queryAll();
PageData<Customer> queryAll(int number, int size);
//根据用户名查询用户的信息
List<Customer> queryByCusName(String name);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册