| | |
| | | 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 io.lettuce.core.dynamic.annotation.Param; |
| | | import com.ruoyi.system.domain.vo.MgtOperLogPageVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * @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(); |
| | | } |