EncodeBody.java 347 Bytes
package com.topdraw.dockingapi.config;

import com.dtflys.forest.annotation.Body;

import java.lang.annotation.*;

/**
 * @author wenxin
 * @version 1.0
 * @date 2024/5/28 下午2:58
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.TYPE})
// 被组合的注解
@Body
public @interface EncodeBody {
}