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

fun.fengwk.automapper.annotation.UseGeneratedKeys Maven / Gradle / Ivy

The newest version!
package fun.fengwk.automapper.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * 该标识表示其为自增键,对应mybatis的useGeneratedKeys。
 *
 * @author fengwk
 */
@Id
@Retention(RetentionPolicy.CLASS)
@Target({ ElementType.FIELD, ElementType.METHOD })
public @interface UseGeneratedKeys {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy