cn.jsbintask.wxpay.request.AbstractWxPayRawResponseRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wxpay-sdk Show documentation
Show all versions of wxpay-sdk Show documentation
wxpay-sdk is a tool for WX pay.
The newest version!
package cn.jsbintask.wxpay.request;
import cn.jsbintask.wxpay.response.WxPayResponse;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.EqualsAndHashCode;
import lombok.Setter;
/**
* @author [email protected]
* @date 2019/9/10 10:16
* 继承该类在生成response时会把 raw response设置进去。
*/
@EqualsAndHashCode(callSuper = true)
public abstract class AbstractWxPayRawResponseRequest extends AbstractWxPayRequest {
/**
* 是否将rawData 生成文件(文本文件)
*/
@JsonIgnore
@Setter
private boolean genFile;
public boolean genFile() {
return this.genFile;
}
}