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.
21 lines
841 B
21 lines
841 B
|
|
package com.service;
|
|
|
|
import java.util.Map;
|
|
|
|
import com.baomidou.mybatisplus.service.IService;
|
|
import com.entity.ConfigEntity;
|
|
import com.utils.PageUtils;
|
|
|
|
// 系统用户
|
|
// 该接口用于处理系统用户相关的业务逻辑,继承自 MyBatis-Plus 的 IService 接口,
|
|
// 具备对 ConfigEntity 实体的基本增删改查功能,同时定义了分页查询方法。
|
|
|
|
public interface ConfigService extends IService<ConfigEntity> {
|
|
|
|
//根据传入的参数进行分页查询系统用户相关配置数据。
|
|
// @param params 包含查询条件和分页信息的参数映射,例如页码、每页记录数、查询关键字等。
|
|
// @return 封装了分页信息和查询结果的 PageUtils 对象,包含当前页的数据列表、总记录数、总页数等信息。
|
|
|
|
PageUtils queryPage(Map<String, Object> params);
|
|
} |