mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-03-16 02:42:02 +08:00
14 lines
290 B
Java
14 lines
290 B
Java
package com.ruoyi.system.mapper;
|
|
|
|
import com.ruoyi.common.core.mapper.BaseMapperPlus;
|
|
import com.ruoyi.system.domain.SysOperLog;
|
|
|
|
/**
|
|
* 操作日志 数据层
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
public interface SysOperLogMapper extends BaseMapperPlus<SysOperLogMapper, SysOperLog, SysOperLog> {
|
|
|
|
}
|