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

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

The newest version!
package com.alipay.api.domain;

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

/**
 * 养老险订单模型
 *
 * @author auto create
 * @since 1.0, 2017-07-27 16:58:09
 */
public class EndowmentOrder extends AlipayObject {

	private static final long serialVersionUID = 4181586829757691432L;

	/**
	 * apply_amount:申购金额,以分为单位
	 */
	@ApiField("apply_amount")
	private String applyAmount;

	/**
	 * 订单id,订单的唯一标识,可以用来做幂等
	 */
	@ApiField("order_id")
	private String orderId;

	/**
	 * pay_time:支付时间,格式:YYYYMMDDHHMISS
	 */
	@ApiField("pay_time")
	private String payTime;

	/**
	 * ta_requestId:TA的唯一业务流水号
	 */
	@ApiField("ta_request_id")
	private String taRequestId;

	public String getApplyAmount() {
		return this.applyAmount;
	}
	public void setApplyAmount(String applyAmount) {
		this.applyAmount = applyAmount;
	}

	public String getOrderId() {
		return this.orderId;
	}
	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}

	public String getPayTime() {
		return this.payTime;
	}
	public void setPayTime(String payTime) {
		this.payTime = payTime;
	}

	public String getTaRequestId() {
		return this.taRequestId;
	}
	public void setTaRequestId(String taRequestId) {
		this.taRequestId = taRequestId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy