net.mingsoft.organization.entity.EmployeeEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-morganization Show documentation
Show all versions of ms-morganization Show documentation
ms-morganization tools Library
package net.mingsoft.organization.entity;
import com.alibaba.fastjson.annotation.JSONField;
import net.mingsoft.basic.entity.ManagerEntity;
import org.springframework.format.annotation.DateTimeFormat;
import com.fasterxml.jackson.annotation.JsonFormat;
import net.mingsoft.base.entity.BaseEntity;
import java.util.Date;
/**
* 员工实体
* @author 铭飞开源团队
* 创建日期:2020-1-6 18:25:28
* 历史修订:
*/
public class EmployeeEntity extends ManagerEntity {
private static final long serialVersionUID = 1578306328591L;
/**
* 员工编号
*/
private String employeeCode;
/**
* 员工状态
*/
private String employeeStatus;
/**
* 性别
*/
private Integer employeeSex;
/**
* 所属角色
*/
private String employeeRole;
/**
* 岗位
*/
private String postIds;
/**
* 所属部门
*/
private String organizationId;
/**
* 政治面貌
*/
private String politics;
/**
* 员工学历
*/
private String education;
/**
* 年龄
*/
private Integer age;
/**
* 手机号
*/
private String phone;
/**
* 所属部门名称(不参与表结构)
*/
private String organizationTitle;
public String getOrganizationTitle() {
return organizationTitle;
}
public void setOrganizationTitle(String organizationTitle) {
this.organizationTitle = organizationTitle;
}
/**
* 设置员工编号
*/
public void setEmployeeCode(String employeeCode) {
this.employeeCode = employeeCode;
}
/**
* 获取员工编号
*/
public String getEmployeeCode() {
return this.employeeCode;
}
/**
* 设置员工状态
*/
public void setEmployeeStatus(String employeeStatus) {
this.employeeStatus = employeeStatus;
}
/**
* 获取员工状态
*/
public String getEmployeeStatus() {
return this.employeeStatus;
}
/**
* 设置性别
*/
public void setEmployeeSex(Integer employeeSex) {
this.employeeSex = employeeSex;
}
/**
* 获取性别
*/
public Integer getEmployeeSex() {
return this.employeeSex;
}
/**
* 设置所属角色
*/
public void setEmployeeRole(String employeeRole) {
this.employeeRole = employeeRole;
}
/**
* 获取所属角色
*/
public String getEmployeeRole() {
return this.employeeRole;
}
/**
* 设置岗位
*/
public void setPostIds(String postIds) {
this.postIds = postIds;
}
/**
* 获取岗位
*/
public String getPostIds() {
return this.postIds;
}
/**
* 设置所属部门
*/
public void setOrganizationId(String organizationId) {
this.organizationId = organizationId;
}
/**
* 获取所属部门
*/
public String getOrganizationId() {
return this.organizationId;
}
/**
* 设置政治面貌
*/
public void setPolitics(String politics) {
this.politics = politics;
}
/**
* 获取政治面貌
*/
public String getPolitics() {
return this.politics;
}
/**
* 设置员工学历
*/
public void setEducation(String education) {
this.education = education;
}
/**
* 获取员工学历
*/
public String getEducation() {
return this.education;
}
/**
* 设置年龄
*/
public void setAge(Integer age) {
this.age = age;
}
/**
* 获取年龄
*/
public Integer getAge() {
return this.age;
}
/**
* 设置手机号
*/
public void setPhone(String phone) {
this.phone = phone;
}
/**
* 获取手机号
*/
public String getPhone() {
return this.phone;
}
}