stipend.java

来自「07年做得人力资源管理系统」· Java 代码 · 共 135 行

JAVA
135
字号
package com.buat.hr.stipend;
//薪金管理
public class Stipend {
	private int id=0;
	private String name=null;
	private String basic=null;
	private String eat=null;
	private String house=null;
	private String duty=null;
	private String tax=null;
	//private String subsidy=null;
	private String punishment=null;
	private String granttime=null;
	
	private int employeeid=0;
	
	public int getEmployeeid() {
		return employeeid;
	}



	public void setEmployeeid(int employeeid) {
		this.employeeid = employeeid;
	}



	public Stipend(String name, String basic, String eat, String house, String duty, String tax, String punishment, String granttime, int employeeid) {
		super();
		this.name = name;
		this.basic = basic;
		this.eat = eat;
		this.house = house;
		this.duty = duty;
		this.tax = tax;
		this.punishment = punishment;
		this.granttime = granttime;
		this.employeeid = employeeid;
	}



	public Stipend(String name, String basic, String eat, String house,
			String duty, String tax, String punishment, String granttime) {
		super();
		this.name = name;
		this.basic = basic;
		this.eat = eat;
		this.house = house;
		this.duty = duty;
		this.tax = tax;
		this.punishment = punishment;
		this.granttime = granttime;
	}
	
	

	public Stipend() {
		
	}

	public int getId() {
		return id;
	}

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

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getBasic() {
		return basic;
	}

	public void setBasic(String basic) {
		this.basic = basic;
	}

	public String getEat() {
		return eat;
	}

	public void setEat(String eat) {
		this.eat = eat;
	}

	public String getHouse() {
		return house;
	}

	public void setHouse(String house) {
		this.house = house;
	}

	public String getDuty() {
		return duty;
	}

	public void setDuty(String duty) {
		this.duty = duty;
	}

	public String getTax() {
		return tax;
	}

	public void setTax(String tax) {
		this.tax = tax;
	}

	public String getPunishment() {
		return punishment;
	}

	public void setPunishment(String punishment) {
		this.punishment = punishment;
	}

	public String getGranttime() {
		return granttime;
	}

	public void setGranttime(String granttime) {
		this.granttime = granttime;
	}

}

⌨️ 快捷键说明

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