Decode.java 483 Bytes
package com.topdraw.dockingapi.config;

import com.dtflys.forest.annotation.MethodLifeCycle;
import com.dtflys.forest.annotation.RequestAttributes;

import java.lang.annotation.*;

/**
 * @author wenxin
 * @version 1.0
 * @date 2024/5/23 下午5:45
 */
@Documented
@MethodLifeCycle(DecodeLifeCycle.class)
@RequestAttributes
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER})
public @interface Decode {

    String value();


}