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.
34 lines
1.1 KiB
34 lines
1.1 KiB
// 定义当前接口所在的包路径
|
|
package com.service;
|
|
|
|
// 导入MyBatis-Plus服务接口
|
|
import com.baomidou.mybatisplus.service.IService;
|
|
// 导入分页工具类
|
|
import com.utils.PageUtils;
|
|
// 导入字典实体类
|
|
import com.entity.DictionaryEntity;
|
|
// 导入Java集合框架中的Map接口
|
|
import java.util.Map;
|
|
// 导入HTTP请求对象
|
|
import javax.servlet.http.HttpServletRequest;
|
|
// 导入Spring空值注解
|
|
import org.springframework.lang.Nullable;
|
|
// 导入Java集合框架中的List接口
|
|
import java.util.List;
|
|
|
|
// 字典服务接口
|
|
// 继承MyBatis-Plus通用服务接口
|
|
// 泛型参数为DictionaryEntity字典实体类
|
|
public interface DictionaryService extends IService<DictionaryEntity> {
|
|
|
|
// 分页查询字典数据方法
|
|
// params - 包含查询条件的参数Map
|
|
// 返回分页工具对象
|
|
PageUtils queryPage(Map<String, Object> params);
|
|
|
|
// 字典表数据转换方法
|
|
// obj - 需要进行字典转换的对象
|
|
// request - HTTP请求对象
|
|
void dictionaryConvert(Object obj, HttpServletRequest request);
|
|
|
|
} |