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

com.alipay.api.domain.ReceiptDiscountInfo 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, 2021-11-12 10:57:46
 */
public class ReceiptDiscountInfo extends AlipayObject {

	private static final long serialVersionUID = 4324923676666751861L;

	/**
	 * 优惠金额,单位分
	 */
	@ApiField("amount")
	private Long amount;

	/**
	 * 优惠描述
	 */
	@ApiField("desc")
	private String desc;

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

	public String getDesc() {
		return this.desc;
	}
	public void setDesc(String desc) {
		this.desc = desc;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy