com.sinszm.sofa.annotation.EnableORM Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of szm-sofa-boot-starter-orm Show documentation
Show all versions of szm-sofa-boot-starter-orm Show documentation
高可用服务框架,ORM数据操作组件 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.
The newest version!
package com.sinszm.sofa.annotation;
import com.sinszm.sofa.condition.ConditionalOnOrm;
import org.springframework.context.annotation.Conditional;
import java.lang.annotation.*;
/**
* ORM启用开关
*
* @author fh411
*/
@Target({ ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Conditional(ConditionalOnOrm.class)
public @interface EnableORM {
}