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

📄 account.java

📁 白广元写的java web整合开发完全自学手册的源代码
💻 JAVA
字号:
package springexample.hibernate.db;

import java.math.BigDecimal;
import java.util.Date;


public class Account {
	
	private Long id = new Long(-1);
	
	private String accountName;

	private String type;
	
	private Double balance;
	
	private Date createDate;
	
	private Date updateDate;
	
	private Customer customer;

	public String getAccountName() {
		return accountName;
	}
	

	public void setAccountName(String accountName) {
		this.accountName = accountName;
	}
	

	
	public Date getCreateDate() {
		return createDate;
	}
	

	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}
	

	public Long getId() {
		return id;
	}
	

	public void setId(Long id) {
		this.id = id;
	}
	

	public String getType() {
		return type;
	}
	

	public void setType(String type) {
		this.type = type;
	}
	

	public Date getUpdateDate() {
		return updateDate;
	}
	

	public void setUpdateDate(Date updateDate) {
		this.updateDate = updateDate;
	}


	public Customer getCustomer() {
		return customer;
	}
	


	public void setCustomer(Customer customer) {
		this.customer = customer;
	}


	public Double getBalance() {
		return balance;
	}
	


	public void setBalance(Double balance) {
		this.balance = balance;
	}
	


		
	

}

⌨️ 快捷键说明

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