stipendbean.java

来自「xueyuan gongzuojieshao」· Java 代码 · 共 176 行

JAVA
176
字号
/*
 * 创建日期 2007-5-2
 *
 * TODO 要更改此生成的文件的模板,请转至
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板
 */
package bean.stipend;

import java.io.Serializable;

/**
 * @author Administrator
 *
 * TODO 要更改此生成的类型注释的模板,请转至
 * 窗口 - 首选项 - Java - 代码样式 - 代码模板
 */
public final class stipendBean implements Serializable{
	
	private String id = null;
	//员工姓名
	private String name = null;
	//基本薪金
	private String basic = null;
	//饭补
	private String eat = null;
	//房补
	private String house = null;
	//全勤奖
	private String duty = null;
	//赋税
	private String scot = null;
	//额外补助] PUNISTHMENT
	private String punisthMent = null;
	//罚款
	private String other = null;
	//发放时间 GRANTTIME
	private String grantTime = null;
	//总计
	private String total = null;
	
	

	/**
	 * @return 返回 basic。
	 */
	public String getBasic() {
		return basic;
	}
	/**
	 * @param basic 要设置的 basic。
	 */
	public void setBasic(String basic) {
		this.basic = basic;
	}
	/**
	 * @return 返回 duty。
	 */
	public String getDuty() {
		return duty;
	}
	/**
	 * @param duty 要设置的 duty。
	 */
	public void setDuty(String duty) {
		this.duty = duty;
	}
	/**
	 * @return 返回 eat。
	 */
	public String getEat() {
		return eat;
	}
	/**
	 * @param eat 要设置的 eat。
	 */
	public void setEat(String eat) {
		this.eat = eat;
	}
	/**
	 * @return 返回 grantTime。
	 */
	public String getGrantTime() {
		return grantTime;
	}
	/**
	 * @param grantTime 要设置的 grantTime。
	 */
	public void setGrantTime(String grantTime) {
		this.grantTime = grantTime;
	}
	/**
	 * @return 返回 house。
	 */
	public String getHouse() {
		return house;
	}
	/**
	 * @param house 要设置的 house。
	 */
	public void setHouse(String house) {
		this.house = house;
	}
	/**
	 * @return 返回 id。
	 */
	public String getId() {
		return id;
	}
	/**
	 * @param id 要设置的 id。
	 */
	public void setId(String id) {
		this.id = id;
	}
	/**
	 * @return 返回 name。
	 */
	public String getName() {
		return name;
	}
	/**
	 * @param name 要设置的 name。
	 */
	public void setName(String name) {
		this.name = name;
	}
	/**
	 * @return 返回 other。
	 */
	public String getOther() {
		return other;
	}
	/**
	 * @param other 要设置的 other。
	 */
	public void setOther(String other) {
		this.other = other;
	}
	/**
	 * @return 返回 punisthMent。
	 */
	public String getPunisthMent() {
		return punisthMent;
	}
	/**
	 * @param punisthMent 要设置的 punisthMent。
	 */
	public void setPunisthMent(String punisthMent) {
		this.punisthMent = punisthMent;
	}
	/**
	 * @return 返回 scot。
	 */
	public String getScot() {
		return scot;
	}
	/**
	 * @param scot 要设置的 scot。
	 */
	public void setScot(String scot) {
		this.scot = scot;
	}
	/**
	 * @return 返回 total。
	 */
	public String getTotal() {
		return total;
	}
	/**
	 * @param total 要设置的 total。
	 */
	public void setTotal(String total) {
		this.total = total;
	}
}

⌨️ 快捷键说明

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