📄 emprecord.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -