com.github.charlemaznable.bunny.client.domain.ServeResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-client Show documentation
Show all versions of bunny-client Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.client.domain;
import lombok.Getter;
import lombok.Setter;
import java.util.Map;
/**
* 服务接口 响应
*/
@Getter
@Setter
public class ServeResponse extends BunnyBaseResponse {
/**
* 服务响应
*/
private Map internalResponse;
/**
* 非期望的内部异常信息
*/
private String unexpectedFailure;
}