package com.mtools.core.plugin.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 数据库表关联,一对一 * @author zhanggh * */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface One2One { String value() default ""; }