package com.jtgh.qlyg.entity; import java.util.Date; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; /** * (二十四) 监察人员信息表 * * @author masn * */ @Entity @Table(name = "SUPERVISE_USER") public class SuperviseUserEntity extends QlygBaseEntity { private static final long serialVersionUID = 2899791114951050870L; private String no; private String userId; private String userName; private String deptcode; /** 6位出生年月,如197506 */ private String birth; /** * 性别 *

* 1:男,2:女 */ private String sex; /** * 政治面貌 *

* 1:中共党员, 2:共青团员, 3:中国国民党革命委员会,4:中国民主同盟,5:中国民主建国会, 6:中国民主促进会,7:中国农工民主党,8 * :中国致公党,9:九三学社,10:台湾民主自治同盟,11:无党派人士 */ private String politicalLandscape; /** * 学历 *

* 1:初中,2:高中,3:大学专科,4:大学本科,5:研究生及以上 */ private String education; private String tel; /** * 职务 *

* 1:纪委书记,2:纪委副书记,3:纪检组组长,4:纪检组副组长,5:监察室主任,6:监察室副主任,7:监察室人员,8:其他 */ private String position; /** * 编制情况,用于记录人员的编制类型 *

* 01:行政编制,02:参照公务员管理编制,03:事业编制,04:其他 */ private String organization; /** * 人员状态 *

* 1:正常 2:退休 3:离休 4:调动 5:其他 */ private String updateType; private Date changeDate; /** A:正常B:取消 */ private String userState; @Id public String getNo() { return no; } public void setNo(String no) { this.no = no; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getDeptcode() { return deptcode; } public void setDeptcode(String deptcode) { this.deptcode = deptcode; } public String getBirth() { return birth; } public void setBirth(String birth) { this.birth = birth; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public String getPoliticalLandscape() { return politicalLandscape; } public void setPoliticalLandscape(String politicalLandscape) { this.politicalLandscape = politicalLandscape; } public String getEducation() { return education; } public void setEducation(String education) { this.education = education; } public String getTel() { return tel; } public void setTel(String tel) { this.tel = tel; } public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } public String getOrganization() { return organization; } public void setOrganization(String organization) { this.organization = organization; } public String getUpdateType() { return updateType; } public void setUpdateType(String updateType) { this.updateType = updateType; } public Date getChangeDate() { return changeDate; } public void setChangeDate(Date changeDate) { this.changeDate = changeDate; } public String getUserState() { return userState; } public void setUserState(String userState) { this.userState = userState; } }