QrCodePaymentRequest.java 499 Bytes
package com.diligrp.cashier.pipeline.domain;

import java.time.LocalDateTime;

/**
 * 付款码支付
 */
public class QrCodePaymentRequest extends OnlinePaymentRequest {
    private final String qrCode;

    public QrCodePaymentRequest(String paymentId, long amount, String goods, String description, LocalDateTime when, String qrCode) {
        super(paymentId, amount, goods, description, when);
        this.qrCode = qrCode;
    }

    public String getQrCode() {
        return qrCode;
    }
}