nbcp.myoql.annotation.CacheForMyBatisPlusBaseMapper.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmyoql Show documentation
Show all versions of ktmyoql Show documentation
kotlin orm -- mysql,mongo , just like ktorm
The newest version!
package nbcp.myoql.annotation
import java.lang.annotation.Inherited
import kotlin.reflect.KClass
/**
* @param value 主表名
*/
@Inherited
@Target(AnnotationTarget.CLASS)
@Retention(AnnotationRetention.RUNTIME)
annotation class CacheForMyBatisPlusBaseMapper(
val value: KClass<*>,
val groupKey: String = "",
val cacheSeconds: Int = 3600
)