package com.github.bingoohuang.springrestclient.annotations;
import java.lang.annotation.*;
@Documented
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface RespStatusMappings {
RespStatusMapping[] value();
}