org.redkalex.pay.PayRefundRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redkale-plugins Show documentation
Show all versions of redkale-plugins Show documentation
Redkale-Plugins -- java framework
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkalex.pay;
import java.util.*;
/**
*
* 详情见: https://redkale.org
*
* @author zhangjx
*/
public class PayRefundRequest extends PayRequest {
protected long paymoney; // 支付金额。 单位:分
protected String thirdpayno = ""; //第三方的支付流水号
protected long refundmoney; // 退款金额。 单位:分 不能大于支付金额
//微信支付: 商户系统内部唯一,同一退款单号多次请求只退一笔
//支付宝: 标识一次退款请求,同一笔交易多次退款需要保证唯一,如需部分退款,则此参数必传
protected String refundno = ""; //退款编号 商户系统内部的退款单号。
protected String clienthost = ""; //HTTP请求的Host
protected String clientAddr = ""; //客户端IP地址
protected Map attach; //扩展信息
@Override
public void checkVaild() {
super.checkVaild();
if (this.refundmoney < 1) throw new RuntimeException("refundmoney is illegal");
if (this.paymoney < 1) throw new RuntimeException("paymoney is illegal");
if (this.refundno == null || this.refundno.isEmpty()) throw new RuntimeException("refundno is illegal");
if (this.thirdpayno == null || this.thirdpayno.isEmpty()) throw new RuntimeException("thirdpayno is illegal");
if (this.clientAddr == null || this.clientAddr.isEmpty()) throw new RuntimeException("clientAddr is illegal");
}
public Map attach(String key, Object value) {
if (this.attach == null) this.attach = new TreeMap<>();
this.attach.put(key, String.valueOf(value));
return this.attach;
}
public String getAttach(String name) {
return attach == null ? null : attach.get(name);
}
public String getAttach(String name, String defValue) {
return attach == null ? defValue : attach.getOrDefault(name, defValue);
}
public long getRefundmoney() {
return refundmoney;
}
public void setRefundmoney(long refundmoney) {
this.refundmoney = refundmoney;
}
public long getPaymoney() {
return paymoney;
}
public void setPaymoney(long paymoney) {
this.paymoney = paymoney;
}
public String getRefundno() {
return refundno;
}
public void setRefundno(String refundno) {
this.refundno = refundno;
}
public String getThirdpayno() {
return thirdpayno;
}
public void setThirdpayno(String thirdpayno) {
this.thirdpayno = thirdpayno;
}
public String getClienthost() {
return clienthost;
}
public void setClienthost(String clienthost) {
this.clienthost = clienthost;
}
public String getClientAddr() {
return clientAddr;
}
public void setClientAddr(String clientAddr) {
this.clientAddr = clientAddr;
}
public Map getAttach() {
return attach;
}
public void setAttach(Map attach) {
this.attach = attach;
}
@Deprecated
public Map add(String key, String value) {
if (this.attach == null) this.attach = new TreeMap<>();
this.attach.put(key, value);
return this.attach;
}
@Deprecated
public String attach(String name) {
return attach == null ? null : attach.get(name);
}
@Deprecated
public String attach(String name, String defValue) {
return attach == null ? defValue : attach.getOrDefault(name, defValue);
}
@Deprecated
public String getMapValue(String name) {
return attach == null ? null : attach.get(name);
}
@Deprecated
public String getMapValue(String name, String defValue) {
return attach == null ? defValue : attach.getOrDefault(name, defValue);
}
@Deprecated
public Map getMap() {
return attach;
}
@Deprecated
public void setMap(Map map) {
this.attach = map;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy