All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.unmz.java.wechat.pay.dto.BaseResponseDto Maven / Gradle / Ivy

There is a newer version: 1.0.13
Show newest version
package net.unmz.java.wechat.pay.dto;

import java.io.Serializable;

/**
 * Project Name: 微信支付SDK
 * 功能描述:微信支付响应参数父类
 *
 * @author [email protected]
 * @version 1.0
 * @date 2018-3-31 23:33
 * @since JDK 1.8
 */
public class BaseResponseDto implements Serializable {
    private static final long serialVersionUID = 8266370534306161695L;

    private String return_code;
    private String return_msg;

    private String appid;
    private String mch_id;
    private String nonce_str;
    private String sign;

    private String result_code;
    private String err_code;
    private String err_code_des;

    public String getReturn_code() {
        return return_code;
    }

    public void setReturn_code(String return_code) {
        this.return_code = return_code;
    }

    public String getReturn_msg() {
        return return_msg;
    }

    public void setReturn_msg(String return_msg) {
        this.return_msg = return_msg;
    }

    public String getAppid() {
        return appid;
    }

    public void setAppid(String appid) {
        this.appid = appid;
    }

    public String getMch_id() {
        return mch_id;
    }

    public void setMch_id(String mch_id) {
        this.mch_id = mch_id;
    }

    public String getNonce_str() {
        return nonce_str;
    }

    public void setNonce_str(String nonce_str) {
        this.nonce_str = nonce_str;
    }

    public String getSign() {
        return sign;
    }

    public void setSign(String sign) {
        this.sign = sign;
    }

    public String getResult_code() {
        return result_code;
    }

    public void setResult_code(String result_code) {
        this.result_code = result_code;
    }

    public String getErr_code() {
        return err_code;
    }

    public void setErr_code(String err_code) {
        this.err_code = err_code;
    }

    public String getErr_code_des() {
        return err_code_des;
    }

    public void setErr_code_des(String err_code_des) {
        this.err_code_des = err_code_des;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy