org.zodiac.mybatisplus.binding.annotation.Module Maven / Gradle / Ivy
package org.zodiac.mybatisplus.binding.annotation;
import java.lang.annotation.*;
/**
* 模块注解。
*
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Module {
/***
* 指定模块名。
*
* @return 名称
*/
String value();
}