CreateQrCode.java 1.3 KB
package com.cjs.site.model.union;

import com.cjs.site.util.union.UnionConstants;

import java.io.Serializable;

/**
 * Created by bruce on 2019-05-14 11:00
 */
public class CreateQrCode extends BaseRequest implements Serializable {

    private static final long serialVersionUID = 4945657951041450816L;

    private String msgType = "bills.getQRCode";
    private String srcReserve;
    private String totalAmount;
    private String qrCodeId;
    private String notifyUrl = UnionConstants.DOMAIN + "/pick/unionPay/notify";

    public String getMsgType() {
        return msgType;
    }

    public void setMsgType(String msgType) {
        this.msgType = msgType;
    }

    public String getSrcReserve() {
        return srcReserve;
    }

    public void setSrcReserve(String srcReserve) {
        this.srcReserve = srcReserve;
    }

    public String getTotalAmount() {
        return totalAmount;
    }

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

    public String getQrCodeId() {
        return qrCodeId;
    }

    public void setQrCodeId(String qrCodeId) {
        this.qrCodeId = qrCodeId;
    }

    public String getNotifyUrl() {
        return notifyUrl;
    }

    public void setNotifyUrl(String notifyUrl) {
        this.notifyUrl = notifyUrl;
    }
}