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

com.alipay.api.domain.DeductionRefundOrderInfo Maven / Gradle / Ivy

package com.alipay.api.domain;

import java.util.Date;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 核销订单退款明细
 *
 * @author auto create
 * @since 1.0, 2024-10-12 19:28:18
 */
public class DeductionRefundOrderInfo extends AlipayObject {

	private static final long serialVersionUID = 2189595158436981892L;

	/**
	 * 业务时间
	 */
	@ApiField("biz_time")
	private Date bizTime;

	/**
	 * 退款面额,单位:分
	 */
	@ApiField("refund_amount")
	private Long refundAmount;

	/**
	 * 退款现金价值,单位:分
	 */
	@ApiField("refund_cash")
	private Long refundCash;

	/**
	 * 退款单id
	 */
	@ApiField("refund_order_id")
	private String refundOrderId;

	/**
	 * 退款状态
	 */
	@ApiField("refund_status")
	private String refundStatus;

	public Date getBizTime() {
		return this.bizTime;
	}
	public void setBizTime(Date bizTime) {
		this.bizTime = bizTime;
	}

	public Long getRefundAmount() {
		return this.refundAmount;
	}
	public void setRefundAmount(Long refundAmount) {
		this.refundAmount = refundAmount;
	}

	public Long getRefundCash() {
		return this.refundCash;
	}
	public void setRefundCash(Long refundCash) {
		this.refundCash = refundCash;
	}

	public String getRefundOrderId() {
		return this.refundOrderId;
	}
	public void setRefundOrderId(String refundOrderId) {
		this.refundOrderId = refundOrderId;
	}

	public String getRefundStatus() {
		return this.refundStatus;
	}
	public void setRefundStatus(String refundStatus) {
		this.refundStatus = refundStatus;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy