ExpertsListBo.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. package com.goafanti.app.bo;
  2. import com.goafanti.comment.bo.CommentDetailResult;
  3. public class ExpertsListBo {
  4. private String uid;
  5. private String username;
  6. private String personPortraitUrl;
  7. private String introduction ;
  8. private Integer industry;
  9. private String workUnit;
  10. private String professionalTitle;
  11. private Integer countInterest;
  12. private Integer interested;
  13. private Integer expert;
  14. private Integer favorable;
  15. private Integer general;
  16. private Integer inferior;
  17. private Integer commentCount;
  18. private String favorableRate;
  19. private CommentDetailResult commentDetailResult;
  20. private Integer consultantType;
  21. private String consultantTypeName;
  22. private String keyword;
  23. private String typicalCase;
  24. private String honer;
  25. private String goodAtIndustry;
  26. public String getUid() {
  27. return uid;
  28. }
  29. public void setUid(String uid) {
  30. this.uid = uid;
  31. }
  32. public String getUsername() {
  33. return username;
  34. }
  35. public void setUsername(String username) {
  36. this.username = username;
  37. }
  38. public String getPersonPortraitUrl() {
  39. return personPortraitUrl;
  40. }
  41. public void setPersonPortraitUrl(String personPortraitUrl) {
  42. this.personPortraitUrl = personPortraitUrl;
  43. }
  44. public String getIntroduction() {
  45. return introduction;
  46. }
  47. public void setIntroduction(String introduction) {
  48. this.introduction = introduction;
  49. }
  50. public Integer getIndustry() {
  51. return industry;
  52. }
  53. public void setIndustry(Integer industry) {
  54. this.industry = industry;
  55. }
  56. public String getWorkUnit() {
  57. return workUnit;
  58. }
  59. public void setWorkUnit(String workUnit) {
  60. this.workUnit = workUnit;
  61. }
  62. public String getProfessionalTitle() {
  63. return professionalTitle;
  64. }
  65. public void setProfessionalTitle(String professionalTitle) {
  66. this.professionalTitle = professionalTitle;
  67. }
  68. public Integer getCountInterest() {
  69. return countInterest;
  70. }
  71. public void setCountInterest(Integer countInterest) {
  72. this.countInterest = countInterest;
  73. }
  74. public Integer getInterested() {
  75. return interested;
  76. }
  77. public void setInterested(Integer interested) {
  78. this.interested = interested;
  79. }
  80. public Integer getExpert() {
  81. return expert;
  82. }
  83. public void setExpert(Integer expert) {
  84. this.expert = expert;
  85. }
  86. public Integer getFavorable() {
  87. return favorable;
  88. }
  89. public void setFavorable(Integer favorable) {
  90. this.favorable = favorable;
  91. }
  92. public Integer getGeneral() {
  93. return general;
  94. }
  95. public void setGeneral(Integer general) {
  96. this.general = general;
  97. }
  98. public Integer getInferior() {
  99. return inferior;
  100. }
  101. public void setInferior(Integer inferior) {
  102. this.inferior = inferior;
  103. }
  104. public Integer getCommentCount() {
  105. return commentCount;
  106. }
  107. public void setCommentCount(Integer commentCount) {
  108. this.commentCount = commentCount;
  109. }
  110. public String getFavorableRate() {
  111. return favorableRate+"%";
  112. }
  113. public void setFavorableRate(String favorableRate) {
  114. this.favorableRate = favorableRate;
  115. }
  116. public CommentDetailResult getCommentDetailResult() {
  117. return commentDetailResult;
  118. }
  119. public void setCommentDetailResult(CommentDetailResult commentDetailResult) {
  120. this.commentDetailResult = commentDetailResult;
  121. }
  122. public Integer getConsultantType() {
  123. return consultantType;
  124. }
  125. public void setConsultantType(Integer consultantType) {
  126. this.consultantType = consultantType;
  127. }
  128. public String getConsultantTypeName() {
  129. return consultantTypeName;
  130. }
  131. public void setConsultantTypeName(String consultantTypeName) {
  132. this.consultantTypeName = consultantTypeName;
  133. }
  134. public String getKeyword() {
  135. return keyword;
  136. }
  137. public void setKeyword(String keyword) {
  138. this.keyword = keyword;
  139. }
  140. public String getTypicalCase() {
  141. return typicalCase;
  142. }
  143. public void setTypicalCase(String typicalCase) {
  144. this.typicalCase = typicalCase;
  145. }
  146. public String getHoner() {
  147. return honer;
  148. }
  149. public void setHoner(String honer) {
  150. this.honer = honer;
  151. }
  152. public String getGoodAtIndustry() {
  153. return goodAtIndustry;
  154. }
  155. public void setGoodAtIndustry(String goodAtIndustry) {
  156. this.goodAtIndustry = goodAtIndustry;
  157. }
  158. }