com.kukababy.plus.annotation.GeneratedValue Maven / Gradle / Ivy
package com.kukababy.plus.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.kukababy.plus.utils.Constant;
/**
*
*
*
* 描述:
*
*
* @author [email protected]
* @date 2019年3月5日 下午10:50:08
*/
@Target({ ElementType.FIELD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface GeneratedValue {
String strategy() default Constant.AUTO;
}