| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.goafanti.business.bo;
- import com.goafanti.common.model.JtBusinessProject;
- public class JtBusinessProjectResult extends JtBusinessProject {
- private Integer module;
-
- public Integer getModule() {
- return module;
- }
- public void setModule(Integer module) {
- this.module = module;
- }
-
- Integer dealCount;
-
- public Integer getDealCount() {
- return dealCount;
- }
- public void setDealCount(Integer dealCount) {
- this.dealCount = dealCount;
- }
- private String companyName;
- public String getCompanyName() {
- return companyName;
- }
- String companyId;
- public String getCompanyId() {
- return companyId;
- }
- public void setCompanyId(String companyId) {
- this.companyId = companyId;
- }
- public void setCompanyName(String companyName) {
- this.companyName = companyName;
- }
-
- @Override
- public String getMaxImgUrl() {
- // TODO Auto-generated method stub
- if(super.getMaxImgUrl()!=null && !super.getMaxImgUrl().contains("."))return null;
- return super.getMaxImgUrl();
- }
-
- @Override
- public String getMinImgUrl() {
- // TODO Auto-generated method stub
- if(super.getMinImgUrl()!=null && !super.getMinImgUrl().contains("."))return null;
- return super.getMinImgUrl();
- }
-
- }
|