PayResponse.java 1.02 KB
package com.cjs.site.model.sand;

import java.io.Serializable;

/**
 * Created by bruce on 2019-04-23 10:57
 */
public class PayResponse implements Serializable {

    private static final long serialVersionUID = 6091779814488467202L;

    private String orderCode;
    private String totalAmount;
    private String qrCode;
    private String merchExtendParams;

    public String getOrderCode() {
        return orderCode;
    }

    public void setOrderCode(String orderCode) {
        this.orderCode = orderCode;
    }

    public String getTotalAmount() {
        return totalAmount;
    }

    public void setTotalAmount(String totalAmount) {
        this.totalAmount = totalAmount;
    }

    public String getQrCode() {
        return qrCode;
    }

    public void setQrCode(String qrCode) {
        this.qrCode = qrCode;
    }

    public String getMerchExtendParams() {
        return merchExtendParams;
    }

    public void setMerchExtendParams(String merchExtendParams) {
        this.merchExtendParams = merchExtendParams;
    }
}