accountdetail.java

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

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