⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 account.java

📁 滑动窗口仿真程序
💻 JAVA
字号:
package com.tarena.account.persistence;

/**
 * Account generated by MyEclipse Persistence Tools
 */

public class Account implements java.io.Serializable {

	// Fields

	private Long accountid;

	private String username;

	private String password;

	private String description;

	// Constructors

	/** default constructor */
	public Account() {
	}

	/** full constructor */
	public Account(String username, String password, String description) {
		this.username = username;
		this.password = password;
		this.description = description;
	}

	// Property accessors

	public Long getAccountid() {
		return this.accountid;
	}

	public void setAccountid(Long accountid) {
		this.accountid = accountid;
	}

	public String getUsername() {
		return this.username;
	}

	public void setUsername(String username) {
		this.username = username;
	}

	public String getPassword() {
		return this.password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -