49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package com.yunbao.common.bean;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class CheckRemainingBalance extends BaseModel {
|
|
|
|
@SerializedName("golden_bean_remaining_balance")
|
|
private int goldenBeanRemainingBalance;
|
|
@SerializedName("status")
|
|
private int status;
|
|
@SerializedName("deduct_money_key")
|
|
private String deductMoneyKey;
|
|
|
|
public String getDeductMoneyKey() {
|
|
return deductMoneyKey;
|
|
}
|
|
|
|
public CheckRemainingBalance setDeductMoneyKey(String deductMoneyKey) {
|
|
this.deductMoneyKey = deductMoneyKey;
|
|
return this;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public CheckRemainingBalance setStatus(int status) {
|
|
this.status = status;
|
|
return this;
|
|
}
|
|
|
|
public int getGoldenBeanRemainingBalance() {
|
|
return goldenBeanRemainingBalance;
|
|
}
|
|
|
|
public void setGoldenBeanRemainingBalance(int goldenBeanRemainingBalance) {
|
|
this.goldenBeanRemainingBalance = goldenBeanRemainingBalance;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "CheckRemainingBalance{" +
|
|
"goldenBeanRemainingBalance=" + goldenBeanRemainingBalance +
|
|
", status=" + status +
|
|
", deductMoneyKey='" + deductMoneyKey + '\'' +
|
|
'}';
|
|
}
|
|
}
|