package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
public class Account {
|
@Expose
|
private AccountDetail detail;
|
@Expose
|
private AccountMonth month;
|
|
public AccountDetail getDetail() {
|
return detail;
|
}
|
|
public void setDetail(AccountDetail detail) {
|
this.detail = detail;
|
}
|
|
public AccountMonth getMonth() {
|
return month;
|
}
|
|
public void setMonth(AccountMonth month) {
|
this.month = month;
|
}
|
}
|