JtBusinessProjectResult.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. public class JtBusinessProjectResult extends JtBusinessProject {
  6. private Integer module;
  7. private List<JtTag> tags;
  8. private String ownerName;
  9. private String interestCount;
  10. private String createTimeFormat;
  11. public String getOwnerName() {
  12. return ownerName;
  13. }
  14. public void setOwnerName(String ownerName) {
  15. this.ownerName = ownerName;
  16. }
  17. public String getInterestCount() {
  18. return interestCount;
  19. }
  20. public void setInterestCount(String interestCount) {
  21. this.interestCount = interestCount;
  22. }
  23. public Integer getModule() {
  24. return module;
  25. }
  26. public void setModule(Integer module) {
  27. this.module = module;
  28. }
  29. Integer dealCount;
  30. public Integer getDealCount() {
  31. return dealCount;
  32. }
  33. public void setDealCount(Integer dealCount) {
  34. this.dealCount = dealCount;
  35. }
  36. private String companyName;
  37. public String getCompanyName() {
  38. return companyName;
  39. }
  40. String companyId;
  41. public String getCompanyId() {
  42. return companyId;
  43. }
  44. public void setCompanyId(String companyId) {
  45. this.companyId = companyId;
  46. }
  47. public void setCompanyName(String companyName) {
  48. this.companyName = companyName;
  49. }
  50. @Override
  51. public String getMaxImgUrl() {
  52. // TODO Auto-generated method stub
  53. if(super.getMaxImgUrl()!=null && !super.getMaxImgUrl().contains("."))return null;
  54. return super.getMaxImgUrl();
  55. }
  56. @Override
  57. public String getMinImgUrl() {
  58. // TODO Auto-generated method stub
  59. if(super.getMinImgUrl()!=null && !super.getMinImgUrl().contains("."))return null;
  60. return super.getMinImgUrl();
  61. }
  62. public List<JtTag> getTags() {
  63. return tags;
  64. }
  65. public void setTags(List<JtTag> tags) {
  66. this.tags = tags;
  67. }
  68. public String getCreateTimeFormat() {
  69. return createTimeFormat;
  70. }
  71. public void setCreateTimeFormat(String createTimeFormat) {
  72. this.createTimeFormat = createTimeFormat;
  73. }
  74. }