19 lines
436 B
Java
19 lines
436 B
Java
|
package com.greenorange.promotion.mapper;
|
||
|
|
||
|
import com.greenorange.promotion.model.entity.SysOperLog;
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
||
|
/**
|
||
|
* @author 35880
|
||
|
* @description 针对表【sys_oper_log(操作日志记录)】的数据库操作Mapper
|
||
|
* @createDate 2025-05-02 20:24:46
|
||
|
* @Entity com.greenorange.promotion.model.entity.SysOperLog
|
||
|
*/
|
||
|
public interface SysOperLogMapper extends BaseMapper<SysOperLog> {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|