package com.ruoyi.system.mapper.config;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.system.domain.dto.MgtOperLogPageDto;
|
import com.ruoyi.system.domain.pojo.config.CustomConfig;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.system.domain.vo.MgtOperLogPageVo;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 系统配置 Mapper 接口
|
* </p>
|
*
|
* @author jqs
|
* @since 2023-04-25
|
*/
|
public interface CustomConfigMapper extends BaseMapper<CustomConfig> {
|
|
/**
|
* @description 通过key获取系统自定义配置
|
* @author jqs
|
* @date 2023/6/6 11:55
|
* @param key
|
* @return CustomConfig
|
*/
|
CustomConfig getByKey(@Param("key") String key);
|
|
/**
|
* @description 分页获取操作日志
|
* @author jqs
|
* @date 2023/6/8 11:52
|
* @param page
|
* @param mgtOperLogPageDto
|
* @return List<MgtOperLogPageVo>
|
*/
|
List<MgtOperLogPageVo> pageOperLog(Page page, @Param("param")MgtOperLogPageDto mgtOperLogPageDto);
|
|
/**
|
* @description
|
* @author jqs
|
* @date 2023/7/13 15:52
|
* @param
|
* @return List<String>
|
*/
|
List<String> listOperTitle();
|
|
/**
|
* @description 删除日志
|
* @author jqs
|
* @date 2023/8/1 19:04
|
* @param
|
* @return void
|
*/
|
void deleteOperlog();
|
}
|