accountform.java

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

JAVA
84
字号
package cn.com.sdcncsi.lunch.balance.form;

public class AccountForm {
	private Integer count;    //帐单数量
	private Double paid;      //已付款
	private Double nopaid;    //未付款
	private Double realPaid;  //实际应付款
	private Integer id;       //用户id
	private String userName;  //用户名
	
	/**
	 * @return the count
	 */
	public Integer getCount() {
		return count;
	}
	/**
	 * @param count the count to set
	 */
	public void setCount(Integer count) {
		this.count = count;
	}
	/**
	 * @return the paid
	 */
	public Double getPaid() {
		return paid;
	}
	/**
	 * @param paid the paid to set
	 */
	public void setPaid(Double paid) {
		this.paid = paid;
	}
	/**
	 * @return the nopaid
	 */
	public Double getNopaid() {
		return nopaid;
	}
	/**
	 * @param nopaid the nopaid to set
	 */
	public void setNopaid(Double nopaid) {
		this.nopaid = nopaid;
	}
	/**
	 * @return the realPaid
	 */
	public Double getRealPaid() {
		return realPaid;
	}
	/**
	 * @param realPaid the realPaid to set
	 */
	public void setRealPaid(Double realPaid) {
		this.realPaid = realPaid;
	}
	/**
	 * @return the id
	 */
	public Integer getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(Integer id) {
		this.id = id;
	}
	/**
	 * @return the userName
	 */
	public String getUserName() {
		return userName;
	}
	/**
	 * @param userName the userName to set
	 */
	public void setUserName(String userName) {
		this.userName = userName;
	}
}

⌨️ 快捷键说明

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