cn.jsbintask.wxpay.response.WxPayCommonError 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.response;
import lombok.Data;
/**
* @author [email protected]
* @date 2019/9/6 11:31
* 不同的 错误逻辑码请作不同处理!
* see https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1
*/
@Data
public class WxPayCommonError {
private String returnCode;
private String returnMsg;
/**
* 业务码逻辑
*/
private String resultCode;
private String errCode;
private String errCodeDes;
}