com.alipay.api.domain.BudgetInfo 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, 2017-06-05 11:25:25
*/
public class BudgetInfo extends AlipayObject {
private static final long serialVersionUID = 1526985786289127149L;
/**
* 预算数量
*/
@ApiField("budget_total")
private String budgetTotal;
/**
* 预算类型
*/
@ApiField("budget_type")
private String budgetType;
public String getBudgetTotal() {
return this.budgetTotal;
}
public void setBudgetTotal(String budgetTotal) {
this.budgetTotal = budgetTotal;
}
public String getBudgetType() {
return this.budgetType;
}
public void setBudgetType(String budgetType) {
this.budgetType = budgetType;
}
}