emprecord.java

来自「用jsp,servlet实现人力资源管理系统」· Java 代码 · 共 101 行

JAVA
101
字号
package com.entity;

import java.io.Serializable;

/**
 * 
 * 员工档案信息实体
 * @author Administrator
 *
 */
public class EmpRecord implements Serializable{

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private int recId;
	
	private int empId;
	
	private String empName;
	
	private String recName;
	
	private String recContent;
	
	private String recRemark;
	
	private EmpInfo empInfo;
	
	public EmpInfo getEmpInfo() {
		return empInfo;
	}

	public void setEmpInfo(EmpInfo empInfo) {
		this.empInfo = empInfo;
	}

	public EmpRecord(){}
	
	public EmpRecord(int empId,String empName,String recName,String recContent,String recRemark){
		
		this.empId = empId;
		this.empName = empName;
		this.recContent = recContent;
		this.recName = recName;
		this.recRemark = recRemark;
	}

	public int getEmpId() {
		return empId;
	}

	public void setEmpId(int empId) {
		this.empId = empId;
	}

	public String getEmpName() {
		return empName;
	}

	public void setEmpName(String empName) {
		this.empName = empName;
	}

	public String getRecContent() {
		return recContent;
	}

	public void setRecContent(String recContent) {
		this.recContent = recContent;
	}

	public int getRecId() {
		return recId;
	}

	public void setRecId(int recId) {
		this.recId = recId;
	}

	public String getRecName() {
		return recName;
	}

	public void setRecName(String recName) {
		this.recName = recName;
	}

	public String getRecRemark() {
		return recRemark;
	}

	public void setRecRemark(String recRemark) {
		this.recRemark = recRemark;
	}
	
	
}

⌨️ 快捷键说明

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