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.
24 lines
683 B
24 lines
683 B
// 定义当前接口所在的包路径
|
|
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);
|
|
|
|
} |