All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vm10.java.mapper.vm Maven / Gradle / Ivy

There is a newer version: 1.3.4.1
Show newest version
package ${packageName}.mapper;

#foreach ($item in $importList)
    ${item}
#end

@Mapper
@Transactional(rollbackFor = Exception.class)
#if($configEntity.useMybatisPlus&&$configEntity.mapper.useCache)
@CacheNamespace(eviction = ScheduledCache.class, blocking = true, flushInterval = 60 * 1000)
#end
public interface ${ClassName}Mapper
#if($configEntity.useMybatisPlus)
 extends BaseMapper<${ClassName}>
#end
{

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy