MiniProPrepayRequest.java 495 Bytes
package com.diligrp.cashier.pipeline.domain;

import java.time.LocalDateTime;

public class MiniProPrepayRequest extends OnlinePaymentRequest {
    // 小程序openId
    private final String openId;

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

    public String getOpenId() {
        return openId;
    }
}