123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- 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;
- /**
- * 性别
- * <p>
- * 1:男,2:女
- */
- private String sex;
- /**
- * 政治面貌
- * <p>
- * 1:中共党员, 2:共青团员, 3:中国国民党革命委员会,4:中国民主同盟,5:中国民主建国会, 6:中国民主促进会,7:中国农工民主党,8
- * :中国致公党,9:九三学社,10:台湾民主自治同盟,11:无党派人士
- */
- private String politicalLandscape;
- /**
- * 学历
- * <p>
- * 1:初中,2:高中,3:大学专科,4:大学本科,5:研究生及以上
- */
- private String education;
- private String tel;
- /**
- * 职务
- * <p>
- * 1:纪委书记,2:纪委副书记,3:纪检组组长,4:纪检组副组长,5:监察室主任,6:监察室副主任,7:监察室人员,8:其他
- */
- private String position;
- /**
- * 编制情况,用于记录人员的编制类型
- * <p>
- * 01:行政编制,02:参照公务员管理编制,03:事业编制,04:其他
- */
- private String organization;
- /**
- * 人员状态
- * <p>
- * 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;
- }
- }
|