InputPersonnelListBo.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package com.goafanti.personnel.bo;
  2. public class InputPersonnelListBo {
  3. // 1)按名字关键字搜索
  4. private String name;
  5. // 2)按所属公司搜索
  6. private String company;
  7. // 3)按员工状态搜索
  8. private Integer status;
  9. // 4)按职位搜索
  10. private Integer jobs;
  11. // 5)按性别搜索
  12. private Integer sex;
  13. // 6)按婚姻状态搜索
  14. private Integer marriage;
  15. // 7)按政治面貌搜索
  16. private Integer politicalOutlook;
  17. // 8)按生日月份进行搜索
  18. private Integer birthdayMonth;
  19. // 9)按转正日期搜索
  20. private String promotionStart;
  21. private String promotionEnd;
  22. // 10)按入职日期搜索
  23. private String entryStart;
  24. private String entryEnd;
  25. // 11)按离职日期搜索
  26. private String quitStart;
  27. private String quitEnd;
  28. // 12)按政治面貌搜索
  29. // 13)按系统进行搜索
  30. private Integer system;
  31. // 14)按工龄期间(小于1年;1~3年;3~10年;10年之上)
  32. private Integer workingYears;
  33. // 15)按学历搜索
  34. private Integer education;
  35. // 16)按合同到期时间搜索
  36. private String contractStart;
  37. private String contractEnd;
  38. private Integer pageSize;
  39. private Integer pageNo;
  40. public String getName() {
  41. return name;
  42. }
  43. public void setName(String name) {
  44. this.name = name;
  45. }
  46. public String getCompany() {
  47. return company;
  48. }
  49. public void setCompany(String company) {
  50. this.company = company;
  51. }
  52. public Integer getStatus() {
  53. return status;
  54. }
  55. public void setStatus(Integer status) {
  56. this.status = status;
  57. }
  58. public Integer getJobs() {
  59. return jobs;
  60. }
  61. public void setJobs(Integer jobs) {
  62. this.jobs = jobs;
  63. }
  64. public Integer getSex() {
  65. return sex;
  66. }
  67. public void setSex(Integer sex) {
  68. this.sex = sex;
  69. }
  70. public Integer getMarriage() {
  71. return marriage;
  72. }
  73. public void setMarriage(Integer marriage) {
  74. this.marriage = marriage;
  75. }
  76. public Integer getPoliticalOutlook() {
  77. return politicalOutlook;
  78. }
  79. public void setPoliticalOutlook(Integer politicalOutlook) {
  80. this.politicalOutlook = politicalOutlook;
  81. }
  82. public Integer getBirthdayMonth() {
  83. return birthdayMonth;
  84. }
  85. public void setBirthdayMonth(Integer birthdayMonth) {
  86. this.birthdayMonth = birthdayMonth;
  87. }
  88. public String getPromotionStart() {
  89. return promotionStart;
  90. }
  91. public void setPromotionStart(String promotionStart) {
  92. this.promotionStart = promotionStart;
  93. }
  94. public String getPromotionEnd() {
  95. return promotionEnd;
  96. }
  97. public void setPromotionEnd(String promotionEnd) {
  98. this.promotionEnd = promotionEnd;
  99. }
  100. public String getEntryStart() {
  101. return entryStart;
  102. }
  103. public void setEntryStart(String entryStart) {
  104. this.entryStart = entryStart;
  105. }
  106. public String getEntryEnd() {
  107. return entryEnd;
  108. }
  109. public void setEntryEnd(String entryEnd) {
  110. this.entryEnd = entryEnd;
  111. }
  112. public String getQuitStart() {
  113. return quitStart;
  114. }
  115. public void setQuitStart(String quitStart) {
  116. this.quitStart = quitStart;
  117. }
  118. public String getQuitEnd() {
  119. return quitEnd;
  120. }
  121. public void setQuitEnd(String quitEnd) {
  122. this.quitEnd = quitEnd;
  123. }
  124. public Integer getSystem() {
  125. return system;
  126. }
  127. public void setSystem(Integer system) {
  128. this.system = system;
  129. }
  130. public Integer getWorkingYears() {
  131. return workingYears;
  132. }
  133. public void setWorkingYears(Integer workingYears) {
  134. this.workingYears = workingYears;
  135. }
  136. public Integer getEducation() {
  137. return education;
  138. }
  139. public void setEducation(Integer education) {
  140. this.education = education;
  141. }
  142. public String getContractStart() {
  143. return contractStart;
  144. }
  145. public void setContractStart(String contractStart) {
  146. this.contractStart = contractStart;
  147. }
  148. public String getContractEnd() {
  149. return contractEnd;
  150. }
  151. public void setContractEnd(String contractEnd) {
  152. this.contractEnd = contractEnd;
  153. }
  154. public Integer getPageSize() {
  155. return pageSize;
  156. }
  157. public void setPageSize(Integer pageSize) {
  158. this.pageSize = pageSize;
  159. }
  160. public Integer getPageNo() {
  161. return pageNo;
  162. }
  163. public void setPageNo(Integer pageNo) {
  164. this.pageNo = pageNo;
  165. }
  166. }