mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
14 lines
268 B
Java
14 lines
268 B
Java
package com.ruoyi.system.mapper;
|
|
|
|
import com.ruoyi.common.core.mybatisplus.core.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysOperLog;
|
|
|
|
/**
|
|
* 操作日志 数据层
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public interface SysOperLogMapper extends BaseMapperPlus<SysOperLog> {
|
|
|
|
}
|