欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SubList分页-012-StudentService接口

程序员文章站 2024-03-18 13:57:34
...
  • 机构和StudentDao类一样
package top.itcourse.page.service;

import top.itcourse.page.model.Pager;
import top.itcourse.page.model.Student;


/*
 *  StudentService类:
 *      1.findStudent方法
 */
public interface StudentService {
    /**
     * 
    * @Title: findStudent 
    * @Description:  根据条件,查询学生分页信息
    * @param @param searchModel : 封装的查询条件
    * @param @param pageNum :查询的第几页数据
    * @param @param pageRecord : 每页显示的记录数目
    * @param @return  返回查询结果 
    * @return Pager<Student>    返回类型 
     */
    public Pager<Student> findStudent(Student searchModel, int currentPage, int pageSize);
}

源码下载

关注下方的微信公众号,回复:java_div_page.code



SubList分页-012-StudentService接口



欢迎加入交流群:451826376


更多信息:www.itcourse.top

SubList分页-012-StudentService接口

相关标签: 分页