You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dsl3/mapper/OperationLogMapper.java

13 lines
583 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.aurora.mapper;
// 导入操作日志实体类OperationLog该实体类与数据库中的操作日志表如operate_log相对应
// 实体类中的字段如id、operateTime、className等与数据库表字段一一映射
import com.aurora.entity.OperationLog;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;
@Repository
public interface OperationLogMapper extends BaseMapper<OperationLog> {
//OperationLog实体类通常用于记录系统操作日志如用户行为、后台管理操作
}