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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
Show 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, 2018-11-12 15:38:24
 */
public class LoanTerm extends AlipayObject {

	private static final long serialVersionUID = 4175133821425666491L;

	/**
	 * 贷款期数
	 */
	@ApiField("term")
	private Long term;

	/**
	 * 贷款期限单位,取值{D, M, Y}:D-日; M-月; Y-年
	 */
	@ApiField("term_unit")
	private String termUnit;

	public Long getTerm() {
		return this.term;
	}
	public void setTerm(Long term) {
		this.term = term;
	}

	public String getTermUnit() {
		return this.termUnit;
	}
	public void setTermUnit(String termUnit) {
		this.termUnit = termUnit;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy