jfd.java

来自「人力资源管理系统」· Java 代码 · 共 49 行

JAVA
49
字号
package org.HumResManSys.vo;

public class Jfd implements java.io.Serializable{
	private String id;
	private String emp_name;
	private String jf_name ;
	private String month;
	private Long jf_money;
	private Employee employee;
	
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public String getEmp_name() {
		return emp_name;
	}
	public void setEmp_name(String emp_name) {
		this.emp_name = emp_name;
	}
	public String getJf_name() {
		return jf_name;
	}
	public void setJf_name(String jf_name) {
		this.jf_name = jf_name;
	}
	public Long getJf_money() {
		return jf_money;
	}
	public Employee getEmployee() {
		return employee;
	}
	public void setEmployee(Employee employee) {
		this.employee = employee;
	}
	public void setJf_money(Long jf_money) {
		this.jf_money = jf_money;
	}
	public String getMonth() {
		return month;
	}
	public void setMonth(String month) {
		this.month = month;
	}

}

⌨️ 快捷键说明

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