📄 accountdetail.java
字号:
package cn.com.sdcncsi.lunch.balance.domain;
import cn.com.sdcncsi.lunch.domain.User;
/**
* AccountDetail entity.
*
* @author MyEclipse Persistence Tools
*/
public class AccountDetail implements java.io.Serializable {
// Fields
private Integer id;
private AccountBook accountBook;
private User user;
private Double avgAccountBill;
// Constructors
/** default constructor */
public AccountDetail() {
}
/** full constructor */
public AccountDetail(Integer id, AccountBook accountBook, User user,
Double avgAccountBill) {
this.id = id;
this.accountBook = accountBook;
this.user = user;
this.avgAccountBill = avgAccountBill;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public AccountBook getAccountBook() {
return this.accountBook;
}
public void setAccountBook(AccountBook accountBook) {
this.accountBook = accountBook;
}
public User getUser() {
return this.user;
}
public void setUser(User user) {
this.user = user;
}
public Double getAvgAccountBill() {
return this.avgAccountBill;
}
public void setAvgAccountBill(Double avgAccountBill) {
this.avgAccountBill = avgAccountBill;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -