pro.chenggang.plugin.springcloud.gateway.option.ResponseInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-gateway-plugin Show documentation
Show all versions of spring-cloud-gateway-plugin Show documentation
Spring Cloud Gateway Plugin Project
package pro.chenggang.plugin.springcloud.gateway.option;
/**
* Grey Context For Grey Route
* @author chenggang
* @date 2019/01/29
*/
public interface ResponseInfo {
/**
* get code
* @return
*/
String getCode();
/**
* get msg
* @return
*/
String getMsg();
}