package com.vci.ubcs.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 MdmSerialAlgorithmMethod {
|
|
/**
|
* 值
|
* @return 值
|
*/
|
String value() default "";
|
|
}
|