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

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

package com.alipay.api.domain;

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

/**
 * 费控额度扣减记录
 *
 * @author auto create
 * @since 1.0, 2023-06-25 11:15:59
 */
public class ExpenseControlQuotaPayInfo extends AlipayObject {

	private static final long serialVersionUID = 5854194751967447991L;

	/**
	 * 金额(分)
	 */
	@ApiField("amount")
	private Long amount;

	/**
	 * 对应的规则ID
	 */
	@ApiField("standard_id")
	private String standardId;

	/**
	 * 额度状态
	 */
	@ApiField("status")
	private String status;

	/**
	 * 支付宝正向交易单号
	 */
	@ApiField("trade_no")
	private String tradeNo;

	public Long getAmount() {
		return this.amount;
	}
	public void setAmount(Long amount) {
		this.amount = amount;
	}

	public String getStandardId() {
		return this.standardId;
	}
	public void setStandardId(String standardId) {
		this.standardId = standardId;
	}

	public String getStatus() {
		return this.status;
	}
	public void setStatus(String status) {
		this.status = status;
	}

	public String getTradeNo() {
		return this.tradeNo;
	}
	public void setTradeNo(String tradeNo) {
		this.tradeNo = tradeNo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy