📄 accounttype.java
字号:
package cn.com.sdcncsi.lunch.balance.domain;
import java.util.HashSet;
import java.util.Set;
/**
* AccountType entity.
*
* @author MyEclipse Persistence Tools
*/
public class AccountType implements java.io.Serializable {
// Fields
private String accountTypeId;
private String accountTypeName;
private Set accountBooks = new HashSet(0);
// Constructors
/** default constructor */
public AccountType() {
}
/** minimal constructor */
public AccountType(String accountTypeId, String accountTypeName) {
this.accountTypeId = accountTypeId;
this.accountTypeName = accountTypeName;
}
/** full constructor */
public AccountType(String accountTypeId, String accountTypeName,
Set accountBooks) {
this.accountTypeId = accountTypeId;
this.accountTypeName = accountTypeName;
this.accountBooks = accountBooks;
}
// Property accessors
public String getAccountTypeId() {
return this.accountTypeId;
}
public void setAccountTypeId(String accountTypeId) {
this.accountTypeId = accountTypeId;
}
public String getAccountTypeName() {
return this.accountTypeName;
}
public void setAccountTypeName(String accountTypeName) {
this.accountTypeName = accountTypeName;
}
public Set getAccountBooks() {
return this.accountBooks;
}
public void setAccountBooks(Set accountBooks) {
this.accountBooks = accountBooks;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -