MemberAssessmentInfo.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. package com.ruoyi.system.domain.member;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. /**
  7. * 委员考核分数对象 member_assessment_info
  8. *
  9. * @author boman
  10. * @date 2024-03-20
  11. */
  12. public class MemberAssessmentInfo extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** 委员考核分数ID */
  16. private Long memberAssessmentId;
  17. /** 账号表ID */
  18. @Excel(name = "账号表ID")
  19. private Long userId;
  20. /** 提案分数 */
  21. @Excel(name = "提案分数")
  22. private Long proposalScore;
  23. /** 社情民意分数 */
  24. @Excel(name = "社情民意分数")
  25. private Long sqmyScore;
  26. /** 会议分数 */
  27. @Excel(name = "会议分数")
  28. private Long conferenceScore;
  29. /** 活动分数 */
  30. @Excel(name = "活动分数")
  31. private Long activityScore;
  32. /**
  33. * 活动视察调研
  34. */
  35. private Long activityScdyScore;
  36. /**
  37. * 活动活动联络组调研
  38. */
  39. private Long activityLlzScore;
  40. /**
  41. * 活动界别调研
  42. */
  43. private Long activityJbScore;
  44. /**
  45. * 活动办实事调研
  46. */
  47. private Long activityBssScore;
  48. /**
  49. * 招商
  50. */
  51. private Long investmentScore;
  52. /** 加分(其他分数) */
  53. @Excel(name = "加分(其他分数)")
  54. private Long bonusScore;
  55. /** 总分 */
  56. @Excel(name = "总分")
  57. private Long totalScore;
  58. /**
  59. * 满分
  60. */
  61. private Long fullScore;
  62. /** 排名 */
  63. @Excel(name = "排名")
  64. private String rank;
  65. /**
  66. * 总人数
  67. */
  68. private int totalPeople;
  69. /** 年份 */
  70. @Excel(name = "年份")
  71. private String year;
  72. public Long getInvestmentScore() {
  73. return investmentScore;
  74. }
  75. public void setInvestmentScore(Long investmentScore) {
  76. this.investmentScore = investmentScore;
  77. }
  78. public Long getActivityScdyScore() {
  79. return activityScdyScore;
  80. }
  81. public void setActivityScdyScore(Long activityScdyScore) {
  82. this.activityScdyScore = activityScdyScore;
  83. }
  84. public Long getActivityLlzScore() {
  85. return activityLlzScore;
  86. }
  87. public void setActivityLlzScore(Long activityLlzScore) {
  88. this.activityLlzScore = activityLlzScore;
  89. }
  90. public Long getActivityJbScore() {
  91. return activityJbScore;
  92. }
  93. public void setActivityJbScore(Long activityJbScore) {
  94. this.activityJbScore = activityJbScore;
  95. }
  96. public Long getActivityBssScore() {
  97. return activityBssScore;
  98. }
  99. public void setActivityBssScore(Long activityBssScore) {
  100. this.activityBssScore = activityBssScore;
  101. }
  102. public Long getFullScore() {
  103. return fullScore;
  104. }
  105. public void setFullScore(Long fullScore) {
  106. this.fullScore = fullScore;
  107. }
  108. public int getTotalPeople() {
  109. return totalPeople;
  110. }
  111. public void setTotalPeople(int totalPeople) {
  112. this.totalPeople = totalPeople;
  113. }
  114. public Long getMemberAssessmentId() {
  115. return memberAssessmentId;
  116. }
  117. public void setMemberAssessmentId(Long memberAssessmentId) {
  118. this.memberAssessmentId = memberAssessmentId;
  119. }
  120. public Long getUserId() {
  121. return userId;
  122. }
  123. public void setUserId(Long userId) {
  124. this.userId = userId;
  125. }
  126. public Long getProposalScore() {
  127. return proposalScore;
  128. }
  129. public void setProposalScore(Long proposalScore) {
  130. this.proposalScore = proposalScore;
  131. }
  132. public Long getSqmyScore() {
  133. return sqmyScore;
  134. }
  135. public void setSqmyScore(Long sqmyScore) {
  136. this.sqmyScore = sqmyScore;
  137. }
  138. public Long getConferenceScore() {
  139. return conferenceScore;
  140. }
  141. public void setConferenceScore(Long conferenceScore) {
  142. this.conferenceScore = conferenceScore;
  143. }
  144. public Long getActivityScore() {
  145. return activityScore;
  146. }
  147. public void setActivityScore(Long activityScore) {
  148. this.activityScore = activityScore;
  149. }
  150. public Long getBonusScore() {
  151. return bonusScore;
  152. }
  153. public void setBonusScore(Long bonusScore) {
  154. this.bonusScore = bonusScore;
  155. }
  156. public Long getTotalScore() {
  157. return totalScore;
  158. }
  159. public void setTotalScore(Long totalScore) {
  160. this.totalScore = totalScore;
  161. }
  162. public String getRank() {
  163. return rank;
  164. }
  165. public void setRank(String rank) {
  166. this.rank = rank;
  167. }
  168. @Override
  169. public String getYear() {
  170. return year;
  171. }
  172. @Override
  173. public void setYear(String year) {
  174. this.year = year;
  175. }
  176. @Override
  177. public String toString() {
  178. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  179. .append("memberAssessmentId", getMemberAssessmentId())
  180. .append("userId", getUserId())
  181. .append("proposalScore", getProposalScore())
  182. .append("sqmyScore", getSqmyScore())
  183. .append("conferenceScore", getConferenceScore())
  184. .append("activityScore", getActivityScore())
  185. .append("bonusScore", getBonusScore())
  186. .append("totalScore", getTotalScore())
  187. .append("rank", getRank())
  188. .append("year", getYear())
  189. .append("createBy", getCreateBy())
  190. .append("createTime", getCreateTime())
  191. .append("updateBy", getUpdateBy())
  192. .append("updateTime", getUpdateTime())
  193. .append("remark", getRemark())
  194. .toString();
  195. }
  196. }