JtBusinessProjectResult.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.goafanti.business.bo;
  2. import java.util.List;
  3. import com.goafanti.common.model.JtBusinessProject;
  4. import com.goafanti.common.model.JtTag;
  5. import com.goafanti.comment.bo.CommentDetailResult;
  6. public class JtBusinessProjectResult extends JtBusinessProject {
  7. private Integer module;
  8. private List<JtTag> tags;
  9. private String ownerName;
  10. private String interestCount;
  11. private String createTimeFormat;
  12. private CommentDetailResult CommentDetailResult;
  13. private Integer interested;
  14. public String getOwnerName() {
  15. return ownerName;
  16. }
  17. public void setOwnerName(String ownerName) {
  18. this.ownerName = ownerName;
  19. }
  20. public String getInterestCount() {
  21. return interestCount;
  22. }
  23. public void setInterestCount(String interestCount) {
  24. this.interestCount = interestCount;
  25. }
  26. public Integer getModule() {
  27. return module;
  28. }
  29. public void setModule(Integer module) {
  30. this.module = module;
  31. }
  32. Integer dealCount;
  33. public Integer getDealCount() {
  34. return dealCount;
  35. }
  36. public void setDealCount(Integer dealCount) {
  37. this.dealCount = dealCount;
  38. }
  39. private String companyName;
  40. public String getCompanyName() {
  41. return companyName;
  42. }
  43. String companyId;
  44. public String getCompanyId() {
  45. return companyId;
  46. }
  47. public void setCompanyId(String companyId) {
  48. this.companyId = companyId;
  49. }
  50. public void setCompanyName(String companyName) {
  51. this.companyName = companyName;
  52. }
  53. @Override
  54. public String getMaxImgUrl() {
  55. if(super.getMaxImgUrl()!=null && !super.getMaxImgUrl().contains("."))return null;
  56. return super.getMaxImgUrl();
  57. }
  58. @Override
  59. public String getMinImgUrl() {
  60. if(super.getMinImgUrl()!=null && !super.getMinImgUrl().contains("."))return null;
  61. return super.getMinImgUrl();
  62. }
  63. public List<JtTag> getTags() {
  64. return tags;
  65. }
  66. public void setTags(List<JtTag> tags) {
  67. this.tags = tags;
  68. }
  69. public String getCreateTimeFormat() {
  70. return createTimeFormat;
  71. }
  72. public void setCreateTimeFormat(String createTimeFormat) {
  73. this.createTimeFormat = createTimeFormat;
  74. }
  75. public CommentDetailResult getCommentDetailResult() {
  76. return CommentDetailResult;
  77. }
  78. public void setCommentDetailResult(CommentDetailResult commentDetailResult) {
  79. CommentDetailResult = commentDetailResult;
  80. }
  81. public Integer getInterested() {
  82. return interested;
  83. }
  84. public void setInterested(Integer interested) {
  85. this.interested = interested;
  86. }
  87. }