xin.altitude.cms.code.mapper.MetaTableMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ucode-cms-code Show documentation
Show all versions of ucode-cms-code Show documentation
Java知识图谱之内容管理系统(CMS)代码自动生成部分
/*
* Copyright (Java知识图谱) 2022.
*/
package xin.altitude.cms.code.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.CacheNamespace;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.cache.decorators.ScheduledCache;
import xin.altitude.cms.code.domain.MetaTable;
/**
* 信息Mapper接口
*
* @author explore
*/
@Mapper
@CacheNamespace(flushInterval = 10000, blocking = true, eviction = ScheduledCache.class)
public interface MetaTableMapper extends BaseMapper {
}