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

com.yuxuan66.core.annotaion.Mapping Maven / Gradle / Ivy

package com.yuxuan66.core.annotaion;

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

import com.yuxuan66.core.annotaion.enums.MappingType;

@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
public @interface Mapping {

	String value() default "";

	boolean isRest() default true;

	MappingType methodType() default MappingType.ALL;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy