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

com.kuangkie.carbon.record.annotation.Relation Maven / Gradle / Ivy

package com.kuangkie.carbon.record.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Inherited;

import static java.lang.annotation.ElementType.FIELD;

@Target({FIELD})
@Retention(RUNTIME)
@Inherited
public @interface Relation {
	
	long value();
	
	/**
	 * 读/ 写 /读写
	* @methodsName: optType
	*
	* @description: 
	*
	* @return
	*
	 */
	String optType() default "读写";
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy