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

org.yes.tools.pay.module.request.RefundQueryRequest Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package org.yes.tools.pay.module.request;

import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.yes.tools.pay.config.PayConfig;

@Data
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = true)
public class RefundQueryRequest extends BaseRequest{

    private static final long serialVersionUID = 522565152886671851L;

    //终端号
    private String tid;
    //商户订单号
    private String merOrderId;

    @Override
    public void checkAndSign(PayConfig payConfig) {
        super.checkAndSign(payConfig);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy