Files
klp-oa/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysOperLogMapper.java

14 lines
290 B
Java
Raw Normal View History

2021-12-21 10:15:12 +08:00
package com.ruoyi.system.mapper;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
2021-12-21 10:15:12 +08:00
import com.ruoyi.system.domain.SysOperLog;
/**
* 操作日志 数据层
*
* @author Lion Li
*/
public interface SysOperLogMapper extends BaseMapperPlus<SysOperLogMapper, SysOperLog, SysOperLog> {
2021-12-21 10:15:12 +08:00
}