JtBusinessProjectResult.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. public Integer getModule() {
  9. return module;
  10. }
  11. public void setModule(Integer module) {
  12. this.module = module;
  13. }
  14. Integer dealCount;
  15. public Integer getDealCount() {
  16. return dealCount;
  17. }
  18. public void setDealCount(Integer dealCount) {
  19. this.dealCount = dealCount;
  20. }
  21. private String companyName;
  22. public String getCompanyName() {
  23. return companyName;
  24. }
  25. String companyId;
  26. public String getCompanyId() {
  27. return companyId;
  28. }
  29. public void setCompanyId(String companyId) {
  30. this.companyId = companyId;
  31. }
  32. public void setCompanyName(String companyName) {
  33. this.companyName = companyName;
  34. }
  35. @Override
  36. public String getMaxImgUrl() {
  37. // TODO Auto-generated method stub
  38. if(super.getMaxImgUrl()!=null && !super.getMaxImgUrl().contains("."))return null;
  39. return super.getMaxImgUrl();
  40. }
  41. @Override
  42. public String getMinImgUrl() {
  43. // TODO Auto-generated method stub
  44. if(super.getMinImgUrl()!=null && !super.getMinImgUrl().contains("."))return null;
  45. return super.getMinImgUrl();
  46. }
  47. public List<JtTag> getTags() {
  48. return tags;
  49. }
  50. public void setTags(List<JtTag> tags) {
  51. this.tags = tags;
  52. }
  53. }