com.riversoft.weixin.pay.payment.wrapper.OrderQueryResponseWrapper Maven / Gradle / Ivy
The newest version!
package com.riversoft.weixin.pay.payment.wrapper;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.riversoft.weixin.pay.payment.bean.OrderQueryResponse;
/**
* @author borball on 1/13/2017.
*/
public class OrderQueryResponseWrapper extends BaseSettings {
@JsonUnwrapped
private com.riversoft.weixin.pay.payment.bean.OrderQueryResponse response;
public OrderQueryResponse getResponse() {
return response;
}
public void setResponse(OrderQueryResponse response) {
this.response = response;
}
}