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

com.github.yydf.struts.annotation.Id Maven / Gradle / Ivy

The newest version!
package com.github.yydf.struts.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;

/**
 * 数据库表主键的注解
 * 
 * @author YYDF 2018-12-07
 *
 */
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Id {

	// true为自增id
	boolean value() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy