parent
f984c807b0
commit
9af6ebe003
@ -0,0 +1,24 @@
|
||||
// 定义当前接口所在的包路径
|
||||
package com.service;
|
||||
|
||||
// 导入Java集合框架中的Map接口
|
||||
import java.util.Map;
|
||||
|
||||
// 导入MyBatis-Plus服务接口
|
||||
import com.baomidou.mybatisplus.service.IService;
|
||||
// 导入配置实体类
|
||||
import com.entity.ConfigEntity;
|
||||
// 导入分页工具类
|
||||
import com.utils.PageUtils;
|
||||
|
||||
// 系统配置服务接口
|
||||
// 继承MyBatis-Plus通用服务接口
|
||||
// 泛型参数为ConfigEntity配置实体类
|
||||
public interface ConfigService extends IService<ConfigEntity> {
|
||||
|
||||
// 分页查询配置数据方法
|
||||
// params - 包含查询条件的参数Map
|
||||
// 返回分页工具对象
|
||||
PageUtils queryPage(Map<String, Object> params);
|
||||
|
||||
}
|
Loading…
Reference in new issue