com.alipay.api.domain.AlipayYebLqdDataResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 余额宝负债端预测数据
*
* @author auto create
* @since 1.0, 2018-01-22 10:52:09
*/
public class AlipayYebLqdDataResult extends AlipayObject {
private static final long serialVersionUID = 3837529592342466314L;
/**
* 申购预测,单位:元
*/
@ApiField("predict_purchase_amt")
private String predictPurchaseAmt;
/**
* 赎回预测,单位:元
*/
@ApiField("predict_redeem_amt")
private String predictRedeemAmt;
/**
* 预测日期,格式为yyyymmdd
*/
@ApiField("target_date")
private String targetDate;
public String getPredictPurchaseAmt() {
return this.predictPurchaseAmt;
}
public void setPredictPurchaseAmt(String predictPurchaseAmt) {
this.predictPurchaseAmt = predictPurchaseAmt;
}
public String getPredictRedeemAmt() {
return this.predictRedeemAmt;
}
public void setPredictRedeemAmt(String predictRedeemAmt) {
this.predictRedeemAmt = predictRedeemAmt;
}
public String getTargetDate() {
return this.targetDate;
}
public void setTargetDate(String targetDate) {
this.targetDate = targetDate;
}
}