package org.springblade.code.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 集成时自定义的转换方法
|
* @author weidy
|
* @date 2022-1-18
|
*/
|
@Target({ElementType.METHOD})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface MdmIntegrationMapMethod {
|
|
/**
|
* 值,
|
* @return 值
|
*/
|
String value() default "";
|
|
|
}
|