...
|
...
|
@@ -5,6 +5,7 @@ import lombok.ToString; |
|
|
|
|
|
import javax.xml.bind.annotation.XmlAccessType;
|
|
|
import javax.xml.bind.annotation.XmlAccessorType;
|
|
|
import javax.xml.bind.annotation.XmlElement;
|
|
|
import javax.xml.bind.annotation.XmlRootElement;
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
...
|
...
|
@@ -13,21 +14,33 @@ import javax.xml.bind.annotation.XmlRootElement; |
|
|
@Data
|
|
|
public class AlipayCustomsResponse {
|
|
|
|
|
|
|
|
|
private String is_success;
|
|
|
|
|
|
private String error;
|
|
|
|
|
|
private String result_code;
|
|
|
private Response response;
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
public static class Response {
|
|
|
|
|
|
private Alipay alipay;
|
|
|
|
|
|
@XmlAccessorType(XmlAccessType.FIELD)
|
|
|
public static class Alipay {
|
|
|
|
|
|
private String result_code;
|
|
|
|
|
|
private String detail_error_code;
|
|
|
|
|
|
private String detail_error_code;
|
|
|
private String detail_error_des;
|
|
|
|
|
|
private String detail_error_des;
|
|
|
/**
|
|
|
* 付款人和购物者是否是同一人
|
|
|
*/
|
|
|
private String identity_check;
|
|
|
|
|
|
/**
|
|
|
* 付款人和购物者是否是同一人
|
|
|
*/
|
|
|
private String identity_check;
|
|
|
}
|
|
|
|
|
|
|
|
|
}
|
|
|
} |
...
|
...
|
|