You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// 声明该类所在的包为 com.service
package com.service ;
// 导入 MyBatis-Plus 提供的 IService 接口,用于实现通用的 CRUD 操作
import com.baomidou.mybatisplus.service.IService ;
// 导入自定义的 PageUtils 类,用于处理分页相关操作
import com.utils.PageUtils ;
// 导入健身课程实体类,用于表示健身课程的数据结构
import com.entity.JianshenkechengEntity ;
// 导入 Map 类,用于存储键值对,通常用于传递查询参数
import java.util.Map ;
// 导入 HttpServletRequest 类,用于处理 HTTP 请求
import javax.servlet.http.HttpServletRequest ;
// 导入 Spring 框架中的 Nullable 注解,用于标记参数或返回值可以为 null
import org.springframework.lang.Nullable ;
// 导入 List 类,用于存储有序的元素集合
import java.util.List ;
// 定义一个名为 JianshenkechengService 的接口,它继承自 IService<JianshenkechengEntity>
public interface JianshenkechengService extends IService < JianshenkechengEntity > {
// 定义一个名为 queryPage 的方法,用于根据传入的查询参数进行分页查询
// 参数 params 是一个 Map, 用于存储查询所需的各种参数
// 返回值是 PageUtils 类型,包含了分页查询后的结果
PageUtils queryPage ( Map < String , Object > params ) ;
}