package com.gkhy.exam.pay.utils;
|
|
import lombok.Data;
|
import org.apache.http.Header;
|
|
@Data
|
public class HttpResultVo {
|
|
|
private Integer statusCode;
|
private String contentType;
|
private boolean textType;
|
private String stringContent;
|
private byte[] byteArrayContent;
|
private Header[] headers;
|
|
}
|