package com.yeshi.fanli.dto.money;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.entity.bus.user.Extract;
|
import com.yeshi.fanli.entity.bus.user.UserInfo;
|
|
public class AccountDetails {
|
|
public AccountDetails(Long id) {
|
this.id = id;
|
}
|
|
public AccountDetails() {
|
}
|
|
private Long id;
|
|
private UserInfo userInfo;
|
|
private Integer type;
|
|
@Expose
|
private String money;
|
|
@Expose
|
private String title;
|
|
private Extract extract;
|
|
@Expose
|
private String createTime;
|
|
private Integer state;
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public UserInfo getUserInfo() {
|
return userInfo;
|
}
|
|
public void setUserInfo(UserInfo userInfo) {
|
this.userInfo = userInfo;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getMoney() {
|
return money;
|
}
|
|
public void setMoney(String money) {
|
this.money = money;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Extract getExtract() {
|
return extract;
|
}
|
|
public void setExtract(Extract extract) {
|
this.extract = extract;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
}
|