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.
21 lines
422 B
21 lines
422 B
3 months ago
|
package com.ruoyi.system.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ruoyi.system.domain.Enterprises;
|
||
|
import com.ruoyi.system.domain.SysFieldChangeLog;
|
||
|
import org.apache.ibatis.annotations.Mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 操作日志Mapper接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2025-01-08
|
||
|
*/
|
||
|
@Mapper
|
||
|
public interface SysFieldChangeLogMapper extends BaseMapper<SysFieldChangeLog>
|
||
|
{
|
||
|
|
||
|
}
|