SuperviseUserEntity.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. package com.jtgh.qlyg.entity;
  2. import java.util.Date;
  3. import javax.persistence.Entity;
  4. import javax.persistence.Id;
  5. import javax.persistence.Table;
  6. /**
  7. * (二十四) 监察人员信息表
  8. *
  9. * @author masn
  10. *
  11. */
  12. @Entity
  13. @Table(name = "SUPERVISE_USER")
  14. public class SuperviseUserEntity extends QlygBaseEntity {
  15. private static final long serialVersionUID = 2899791114951050870L;
  16. private String no;
  17. private String userId;
  18. private String userName;
  19. private String deptcode;
  20. /** 6位出生年月,如197506 */
  21. private String birth;
  22. /**
  23. * 性别
  24. * <p>
  25. * 1:男,2:女
  26. */
  27. private String sex;
  28. /**
  29. * 政治面貌
  30. * <p>
  31. * 1:中共党员, 2:共青团员, 3:中国国民党革命委员会,4:中国民主同盟,5:中国民主建国会, 6:中国民主促进会,7:中国农工民主党,8
  32. * :中国致公党,9:九三学社,10:台湾民主自治同盟,11:无党派人士
  33. */
  34. private String politicalLandscape;
  35. /**
  36. * 学历
  37. * <p>
  38. * 1:初中,2:高中,3:大学专科,4:大学本科,5:研究生及以上
  39. */
  40. private String education;
  41. private String tel;
  42. /**
  43. * 职务
  44. * <p>
  45. * 1:纪委书记,2:纪委副书记,3:纪检组组长,4:纪检组副组长,5:监察室主任,6:监察室副主任,7:监察室人员,8:其他
  46. */
  47. private String position;
  48. /**
  49. * 编制情况,用于记录人员的编制类型
  50. * <p>
  51. * 01:行政编制,02:参照公务员管理编制,03:事业编制,04:其他
  52. */
  53. private String organization;
  54. /**
  55. * 人员状态
  56. * <p>
  57. * 1:正常 2:退休 3:离休 4:调动 5:其他
  58. */
  59. private String updateType;
  60. private Date changeDate;
  61. /** A:正常B:取消 */
  62. private String userState;
  63. @Id
  64. public String getNo() {
  65. return no;
  66. }
  67. public void setNo(String no) {
  68. this.no = no;
  69. }
  70. public String getUserId() {
  71. return userId;
  72. }
  73. public void setUserId(String userId) {
  74. this.userId = userId;
  75. }
  76. public String getUserName() {
  77. return userName;
  78. }
  79. public void setUserName(String userName) {
  80. this.userName = userName;
  81. }
  82. public String getDeptcode() {
  83. return deptcode;
  84. }
  85. public void setDeptcode(String deptcode) {
  86. this.deptcode = deptcode;
  87. }
  88. public String getBirth() {
  89. return birth;
  90. }
  91. public void setBirth(String birth) {
  92. this.birth = birth;
  93. }
  94. public String getSex() {
  95. return sex;
  96. }
  97. public void setSex(String sex) {
  98. this.sex = sex;
  99. }
  100. public String getPoliticalLandscape() {
  101. return politicalLandscape;
  102. }
  103. public void setPoliticalLandscape(String politicalLandscape) {
  104. this.politicalLandscape = politicalLandscape;
  105. }
  106. public String getEducation() {
  107. return education;
  108. }
  109. public void setEducation(String education) {
  110. this.education = education;
  111. }
  112. public String getTel() {
  113. return tel;
  114. }
  115. public void setTel(String tel) {
  116. this.tel = tel;
  117. }
  118. public String getPosition() {
  119. return position;
  120. }
  121. public void setPosition(String position) {
  122. this.position = position;
  123. }
  124. public String getOrganization() {
  125. return organization;
  126. }
  127. public void setOrganization(String organization) {
  128. this.organization = organization;
  129. }
  130. public String getUpdateType() {
  131. return updateType;
  132. }
  133. public void setUpdateType(String updateType) {
  134. this.updateType = updateType;
  135. }
  136. public Date getChangeDate() {
  137. return changeDate;
  138. }
  139. public void setChangeDate(Date changeDate) {
  140. this.changeDate = changeDate;
  141. }
  142. public String getUserState() {
  143. return userState;
  144. }
  145. public void setUserState(String userState) {
  146. this.userState = userState;
  147. }
  148. }