accounttype.java

来自「因为许多人出去吃饭都一个人付帐」· Java 代码 · 共 66 行

JAVA
66
字号
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 + =
减小字号Ctrl + -
显示快捷键?