Commit 63c8a378 authored by 赵啸非's avatar 赵啸非

添加公司背景图片字段

parent 234af950
-- ---------------------------- -- ----------------------------
2023-9-11 -- 2023-9-11
-- ---------------------------- -- ----------------------------
ALTER TABLE mortals_xhx_user ADD COLUMN `staffId` varchar(64) COMMENT '员工Id,关联用户员工表'; ALTER TABLE mortals_xhx_user ADD COLUMN `staffId` varchar(64) COMMENT '员工Id,关联用户员工表';
ALTER TABLE mortals_xhx_user ADD COLUMN `openId` varchar(64) COMMENT '微信openId'; ALTER TABLE mortals_xhx_user ADD COLUMN `openId` varchar(64) COMMENT '微信openId';
...@@ -108,3 +108,10 @@ CREATE TABLE mortals_xhx_news_up( ...@@ -108,3 +108,10 @@ CREATE TABLE mortals_xhx_news_up(
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
,KEY `upName` (`upName`) USING BTREE ,KEY `upName` (`upName`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='新闻点赞记录信息'; ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='新闻点赞记录信息';
-- ----------------------------
-- 2024-12-5
-- ----------------------------
ALTER TABLE mortals_xhx_company ADD COLUMN `background` varchar(256) default '' COMMENT '背景图片';
package com.mortals.xhx.busiz.controller; package com.mortals.xhx.busiz.controller;
import com.mortals.framework.annotation.UnAuth;
import com.mortals.framework.idempotent.helper.IdempotentHelper; import com.mortals.framework.idempotent.helper.IdempotentHelper;
import com.mortals.xhx.busiz.service.TestIdempotentService; import com.mortals.xhx.busiz.service.TestIdempotentService;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
...@@ -28,6 +29,7 @@ public class TestIdempotentController { ...@@ -28,6 +29,7 @@ public class TestIdempotentController {
* url: localhost:12345/v1/idempotent/test-with-result?source=taobao&operationType=publish_product&businessKey=pd_20230105007&name=lisi * url: localhost:12345/v1/idempotent/test-with-result?source=taobao&operationType=publish_product&businessKey=pd_20230105007&name=lisi
*/ */
@GetMapping("/test-with-result") @GetMapping("/test-with-result")
@UnAuth
public String testWithResult(String source, public String testWithResult(String source,
String operationType, String operationType,
String businessKey, String businessKey,
...@@ -44,6 +46,7 @@ public class TestIdempotentController { ...@@ -44,6 +46,7 @@ public class TestIdempotentController {
* url : localhost:12345/v1/idempotent/test-with-no-result?source=taobao&operationType=publish_product&businessKey=pd_20230105008&name=zhangsan * url : localhost:12345/v1/idempotent/test-with-no-result?source=taobao&operationType=publish_product&businessKey=pd_20230105008&name=zhangsan
*/ */
@GetMapping("/test-with-no-result") @GetMapping("/test-with-no-result")
@UnAuth
public String testWithNoResult(String source, public String testWithNoResult(String source,
String operationType, String operationType,
String businessKey, String businessKey,
......
...@@ -13,150 +13,154 @@ import com.mortals.xhx.module.company.model.vo.CompanyVo; ...@@ -13,150 +13,154 @@ import com.mortals.xhx.module.company.model.vo.CompanyVo;
import com.mortals.xhx.module.company.model.CompanyLabelsEntity; import com.mortals.xhx.module.company.model.CompanyLabelsEntity;
import lombok.Data; import lombok.Data;
/** /**
* 公司实体对象 * 公司实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-09-18 * @date 2024-12-05
*/ */
@Data @Data
public class CompanyEntity extends CompanyVo { public class CompanyEntity extends CompanyVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 公司名称 * 公司名称
*/ */
@Excel(name = "公司名称") @Excel(name = "公司名称")
private String companyName; private String companyName;
/** /**
* 公司编码 * 公司编码
*/ */
private String companyCode; private String companyCode;
/** /**
* 注册号 * 注册号
*/ */
private String registrationNumber; private String registrationNumber;
/** /**
* 法定代表人 * 法定代表人
*/ */
private String legalRepresentative; private String legalRepresentative;
/** /**
* 注册资本 * 注册资本
*/ */
private String registeredCapital; private String registeredCapital;
/** /**
* 公司类型 * 公司类型
*/ */
private String companyType; private String companyType;
/** /**
* 经营范围 * 经营范围
*/ */
private String businessScope; private String businessScope;
/** /**
* 经营地址 * 经营地址
*/ */
private String businessAdress; private String businessAdress;
/** /**
* 所在地 * 所在地
*/ */
private String location; private String location;
/** /**
* 所属区域编码 * 所属区域编码
*/ */
private String areaCode; private String areaCode;
/** /**
* 所属区域名称 * 所属区域名称
*/ */
private String areaName; private String areaName;
/** /**
* 联系电话 * 联系电话
*/ */
private String contactPhone; private String contactPhone;
/** /**
* 电子邮件地址 * 电子邮件地址
*/ */
private String email; private String email;
/** /**
* 公司网站 * 公司网站
*/ */
private String website; private String website;
/** /**
* 税务登记号 * 税务登记号
*/ */
private String taxRegistrationNumber; private String taxRegistrationNumber;
/** /**
* 社会信用代码 * 社会信用代码
*/ */
private String socialCreditCode; private String socialCreditCode;
/** /**
* 商标信息 * 商标信息
*/ */
private String trademarkInfo; private String trademarkInfo;
/** /**
* 网站历史备案信息 * 网站历史备案信息
*/ */
private String websiteRegistrationInfo; private String websiteRegistrationInfo;
/** /**
* 员工总数 * 员工总数
*/ */
private Integer totalEmployees; private Integer totalEmployees;
/** /**
* 软件著作权数量 * 软件著作权数量
*/ */
private Integer softNum; private Integer softNum;
/** /**
* 专利数量 * 专利数量
*/ */
private Integer patentNum; private Integer patentNum;
/** /**
* 历史发展 * 历史发展
*/ */
private String hisDevelop; private String hisDevelop;
/** /**
* 经度 * 经度
*/ */
private String lon; private String lon;
/** /**
* 纬度 * 纬度
*/ */
private String lati; private String lati;
/** /**
* 企业logo * 企业logo
*/ */
private String logoPath; private String logoPath;
/** /**
* 企业视频 * 企业视频
*/ */
private String companyVideoPath; private String companyVideoPath;
/** /**
* 企业宣传图片 * 企业宣传图片
*/ */
private String companyPicPath; private String companyPicPath;
/** /**
* 公司介绍 * 公司介绍
*/ */
private String companyIntroduction; private String companyIntroduction;
/** /**
* 公司文化 * 公司文化
*/ */
private String companyCulture; private String companyCulture;
/** /**
* 排序 * 排序
*/ */
private Integer sort; private Integer sort;
/** /**
* 成立日期 * 成立日期
*/ */
private Date establishDate; private Date establishDate;
/** /**
* 备注 * 备注
*/ */
private String remark; private String remark;
/** /**
* 公司标注信息 * 背景图片
*/ */
private String background;
/**
* 公司标注信息
*/
private List<CompanyLabelsEntity> companyLabelsList=new ArrayList<>();; private List<CompanyLabelsEntity> companyLabelsList=new ArrayList<>();;
public List<CompanyLabelsEntity> getCompanyLabelsList(){ public List<CompanyLabelsEntity> getCompanyLabelsList(){
return companyLabelsList; return companyLabelsList;
} }
public void setCompanyLabelsList(List<CompanyLabelsEntity> companyLabelsList){ public void setCompanyLabelsList(List<CompanyLabelsEntity> companyLabelsList){
...@@ -164,7 +168,7 @@ public class CompanyEntity extends CompanyVo { ...@@ -164,7 +168,7 @@ public class CompanyEntity extends CompanyVo {
} }
@Override @Override
public int hashCode() { public int hashCode() {
return this.getId().hashCode(); return this.getId().hashCode();
} }
@Override @Override
public boolean equals(Object obj) { public boolean equals(Object obj) {
...@@ -172,44 +176,45 @@ public class CompanyEntity extends CompanyVo { ...@@ -172,44 +176,45 @@ public class CompanyEntity extends CompanyVo {
if (obj instanceof CompanyEntity) { if (obj instanceof CompanyEntity) {
CompanyEntity tmp = (CompanyEntity) obj; CompanyEntity tmp = (CompanyEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
} }
public void initAttrValue(){ public void initAttrValue(){
this.companyName = ""; this.companyName = "";
this.companyCode = ""; this.companyCode = "";
this.registrationNumber = ""; this.registrationNumber = "";
this.legalRepresentative = ""; this.legalRepresentative = "";
this.registeredCapital = ""; this.registeredCapital = "";
this.companyType = ""; this.companyType = "";
this.businessScope = ""; this.businessScope = "";
this.businessAdress = ""; this.businessAdress = "";
this.location = ""; this.location = "";
this.areaCode = ""; this.areaCode = "";
this.areaName = ""; this.areaName = "";
this.contactPhone = ""; this.contactPhone = "";
this.email = ""; this.email = "";
this.website = ""; this.website = "";
this.taxRegistrationNumber = ""; this.taxRegistrationNumber = "";
this.socialCreditCode = ""; this.socialCreditCode = "";
this.trademarkInfo = ""; this.trademarkInfo = "";
this.websiteRegistrationInfo = ""; this.websiteRegistrationInfo = "";
this.totalEmployees = 0; this.totalEmployees = 0;
this.softNum = 0; this.softNum = 0;
this.patentNum = 0; this.patentNum = 0;
this.hisDevelop = ""; this.hisDevelop = "";
this.lon = ""; this.lon = "";
this.lati = ""; this.lati = "";
this.logoPath = ""; this.logoPath = "";
this.companyVideoPath = ""; this.companyVideoPath = "";
this.companyPicPath = ""; this.companyPicPath = "";
this.companyIntroduction = ""; this.companyIntroduction = "";
this.companyCulture = ""; this.companyCulture = "";
this.sort = 0; this.sort = 0;
this.establishDate = new Date(); this.establishDate = null;
this.remark = ""; this.remark = "";
this.background = "";
} }
} }
\ No newline at end of file
...@@ -5,11 +5,11 @@ import java.util.Date; ...@@ -5,11 +5,11 @@ import java.util.Date;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.company.model.CompanyEntity; import com.mortals.xhx.module.company.model.CompanyEntity;
/** /**
* 公司查询对象 * 公司查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-09-18 * @date 2024-12-05
*/ */
public class CompanyQuery extends CompanyEntity { public class CompanyQuery extends CompanyEntity {
/** 开始 主键ID,主键,自增长 */ /** 开始 主键ID,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -269,6 +269,11 @@ public class CompanyQuery extends CompanyEntity { ...@@ -269,6 +269,11 @@ public class CompanyQuery extends CompanyEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 背景图片 */
private List<String> backgroundList;
/** 背景图片排除列表 */
private List <String> backgroundNotList;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */ /** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
private List<CompanyQuery> orConditionList; private List<CompanyQuery> orConditionList;
...@@ -278,2454 +283,2505 @@ public class CompanyQuery extends CompanyEntity { ...@@ -278,2454 +283,2505 @@ public class CompanyQuery extends CompanyEntity {
public CompanyQuery(){} public CompanyQuery(){}
/** /**
* 获取 开始 主键ID,主键,自增长 * 获取 开始 主键ID,主键,自增长
* @return idStart * @return idStart
*/ */
public Long getIdStart(){ public Long getIdStart(){
return this.idStart; return this.idStart;
} }
/** /**
* 设置 开始 主键ID,主键,自增长 * 设置 开始 主键ID,主键,自增长
* @param idStart * @param idStart
*/ */
public void setIdStart(Long idStart){ public void setIdStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
} }
/** /**
* 获取 结束 主键ID,主键,自增长 * 获取 结束 主键ID,主键,自增长
* @return $idEnd * @return $idEnd
*/ */
public Long getIdEnd(){ public Long getIdEnd(){
return this.idEnd; return this.idEnd;
} }
/** /**
* 设置 结束 主键ID,主键,自增长 * 设置 结束 主键ID,主键,自增长
* @param idEnd * @param idEnd
*/ */
public void setIdEnd(Long idEnd){ public void setIdEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
} }
/** /**
* 获取 增加 主键ID,主键,自增长 * 获取 增加 主键ID,主键,自增长
* @return idIncrement * @return idIncrement
*/ */
public Long getIdIncrement(){ public Long getIdIncrement(){
return this.idIncrement; return this.idIncrement;
} }
/** /**
* 设置 增加 主键ID,主键,自增长 * 设置 增加 主键ID,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public void setIdIncrement(Long idIncrement){ public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
} }
/** /**
* 获取 主键ID,主键,自增长 * 获取 主键ID,主键,自增长
* @return idList * @return idList
*/ */
public List<Long> getIdList(){ public List<Long> getIdList(){
return this.idList; return this.idList;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idList * @param idList
*/ */
public void setIdList(List<Long> idList){ public void setIdList(List<Long> idList){
this.idList = idList; this.idList = idList;
} }
/** /**
* 获取 主键ID,主键,自增长 * 获取 主键ID,主键,自增长
* @return idNotList * @return idNotList
*/ */
public List<Long> getIdNotList(){ public List<Long> getIdNotList(){
return this.idNotList; return this.idNotList;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idNotList * @param idNotList
*/ */
public void setIdNotList(List<Long> idNotList){ public void setIdNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
} }
/** /**
* 获取 公司名称 * 获取 公司名称
* @return companyNameList * @return companyNameList
*/ */
public List<String> getCompanyNameList(){ public List<String> getCompanyNameList(){
return this.companyNameList; return this.companyNameList;
} }
/** /**
* 设置 公司名称 * 设置 公司名称
* @param companyNameList * @param companyNameList
*/ */
public void setCompanyNameList(List<String> companyNameList){ public void setCompanyNameList(List<String> companyNameList){
this.companyNameList = companyNameList; this.companyNameList = companyNameList;
} }
/** /**
* 获取 公司名称 * 获取 公司名称
* @return companyNameNotList * @return companyNameNotList
*/ */
public List<String> getCompanyNameNotList(){ public List<String> getCompanyNameNotList(){
return this.companyNameNotList; return this.companyNameNotList;
} }
/** /**
* 设置 公司名称 * 设置 公司名称
* @param companyNameNotList * @param companyNameNotList
*/ */
public void setCompanyNameNotList(List<String> companyNameNotList){ public void setCompanyNameNotList(List<String> companyNameNotList){
this.companyNameNotList = companyNameNotList; this.companyNameNotList = companyNameNotList;
} }
/** /**
* 获取 公司编码 * 获取 公司编码
* @return companyCodeList * @return companyCodeList
*/ */
public List<String> getCompanyCodeList(){ public List<String> getCompanyCodeList(){
return this.companyCodeList; return this.companyCodeList;
} }
/** /**
* 设置 公司编码 * 设置 公司编码
* @param companyCodeList * @param companyCodeList
*/ */
public void setCompanyCodeList(List<String> companyCodeList){ public void setCompanyCodeList(List<String> companyCodeList){
this.companyCodeList = companyCodeList; this.companyCodeList = companyCodeList;
} }
/** /**
* 获取 公司编码 * 获取 公司编码
* @return companyCodeNotList * @return companyCodeNotList
*/ */
public List<String> getCompanyCodeNotList(){ public List<String> getCompanyCodeNotList(){
return this.companyCodeNotList; return this.companyCodeNotList;
} }
/** /**
* 设置 公司编码 * 设置 公司编码
* @param companyCodeNotList * @param companyCodeNotList
*/ */
public void setCompanyCodeNotList(List<String> companyCodeNotList){ public void setCompanyCodeNotList(List<String> companyCodeNotList){
this.companyCodeNotList = companyCodeNotList; this.companyCodeNotList = companyCodeNotList;
} }
/** /**
* 获取 注册号 * 获取 注册号
* @return registrationNumberList * @return registrationNumberList
*/ */
public List<String> getRegistrationNumberList(){ public List<String> getRegistrationNumberList(){
return this.registrationNumberList; return this.registrationNumberList;
} }
/** /**
* 设置 注册号 * 设置 注册号
* @param registrationNumberList * @param registrationNumberList
*/ */
public void setRegistrationNumberList(List<String> registrationNumberList){ public void setRegistrationNumberList(List<String> registrationNumberList){
this.registrationNumberList = registrationNumberList; this.registrationNumberList = registrationNumberList;
} }
/** /**
* 获取 注册号 * 获取 注册号
* @return registrationNumberNotList * @return registrationNumberNotList
*/ */
public List<String> getRegistrationNumberNotList(){ public List<String> getRegistrationNumberNotList(){
return this.registrationNumberNotList; return this.registrationNumberNotList;
} }
/** /**
* 设置 注册号 * 设置 注册号
* @param registrationNumberNotList * @param registrationNumberNotList
*/ */
public void setRegistrationNumberNotList(List<String> registrationNumberNotList){ public void setRegistrationNumberNotList(List<String> registrationNumberNotList){
this.registrationNumberNotList = registrationNumberNotList; this.registrationNumberNotList = registrationNumberNotList;
} }
/** /**
* 获取 法定代表人 * 获取 法定代表人
* @return legalRepresentativeList * @return legalRepresentativeList
*/ */
public List<String> getLegalRepresentativeList(){ public List<String> getLegalRepresentativeList(){
return this.legalRepresentativeList; return this.legalRepresentativeList;
} }
/** /**
* 设置 法定代表人 * 设置 法定代表人
* @param legalRepresentativeList * @param legalRepresentativeList
*/ */
public void setLegalRepresentativeList(List<String> legalRepresentativeList){ public void setLegalRepresentativeList(List<String> legalRepresentativeList){
this.legalRepresentativeList = legalRepresentativeList; this.legalRepresentativeList = legalRepresentativeList;
} }
/** /**
* 获取 法定代表人 * 获取 法定代表人
* @return legalRepresentativeNotList * @return legalRepresentativeNotList
*/ */
public List<String> getLegalRepresentativeNotList(){ public List<String> getLegalRepresentativeNotList(){
return this.legalRepresentativeNotList; return this.legalRepresentativeNotList;
} }
/** /**
* 设置 法定代表人 * 设置 法定代表人
* @param legalRepresentativeNotList * @param legalRepresentativeNotList
*/ */
public void setLegalRepresentativeNotList(List<String> legalRepresentativeNotList){ public void setLegalRepresentativeNotList(List<String> legalRepresentativeNotList){
this.legalRepresentativeNotList = legalRepresentativeNotList; this.legalRepresentativeNotList = legalRepresentativeNotList;
} }
/** /**
* 获取 注册资本 * 获取 注册资本
* @return registeredCapitalList * @return registeredCapitalList
*/ */
public List<String> getRegisteredCapitalList(){ public List<String> getRegisteredCapitalList(){
return this.registeredCapitalList; return this.registeredCapitalList;
} }
/** /**
* 设置 注册资本 * 设置 注册资本
* @param registeredCapitalList * @param registeredCapitalList
*/ */
public void setRegisteredCapitalList(List<String> registeredCapitalList){ public void setRegisteredCapitalList(List<String> registeredCapitalList){
this.registeredCapitalList = registeredCapitalList; this.registeredCapitalList = registeredCapitalList;
} }
/** /**
* 获取 注册资本 * 获取 注册资本
* @return registeredCapitalNotList * @return registeredCapitalNotList
*/ */
public List<String> getRegisteredCapitalNotList(){ public List<String> getRegisteredCapitalNotList(){
return this.registeredCapitalNotList; return this.registeredCapitalNotList;
} }
/** /**
* 设置 注册资本 * 设置 注册资本
* @param registeredCapitalNotList * @param registeredCapitalNotList
*/ */
public void setRegisteredCapitalNotList(List<String> registeredCapitalNotList){ public void setRegisteredCapitalNotList(List<String> registeredCapitalNotList){
this.registeredCapitalNotList = registeredCapitalNotList; this.registeredCapitalNotList = registeredCapitalNotList;
} }
/** /**
* 获取 公司类型 * 获取 公司类型
* @return companyTypeList * @return companyTypeList
*/ */
public List<String> getCompanyTypeList(){ public List<String> getCompanyTypeList(){
return this.companyTypeList; return this.companyTypeList;
} }
/** /**
* 设置 公司类型 * 设置 公司类型
* @param companyTypeList * @param companyTypeList
*/ */
public void setCompanyTypeList(List<String> companyTypeList){ public void setCompanyTypeList(List<String> companyTypeList){
this.companyTypeList = companyTypeList; this.companyTypeList = companyTypeList;
} }
/** /**
* 获取 公司类型 * 获取 公司类型
* @return companyTypeNotList * @return companyTypeNotList
*/ */
public List<String> getCompanyTypeNotList(){ public List<String> getCompanyTypeNotList(){
return this.companyTypeNotList; return this.companyTypeNotList;
} }
/** /**
* 设置 公司类型 * 设置 公司类型
* @param companyTypeNotList * @param companyTypeNotList
*/ */
public void setCompanyTypeNotList(List<String> companyTypeNotList){ public void setCompanyTypeNotList(List<String> companyTypeNotList){
this.companyTypeNotList = companyTypeNotList; this.companyTypeNotList = companyTypeNotList;
} }
/** /**
* 获取 经营范围 * 获取 经营范围
* @return businessScopeList * @return businessScopeList
*/ */
public List<String> getBusinessScopeList(){ public List<String> getBusinessScopeList(){
return this.businessScopeList; return this.businessScopeList;
} }
/** /**
* 设置 经营范围 * 设置 经营范围
* @param businessScopeList * @param businessScopeList
*/ */
public void setBusinessScopeList(List<String> businessScopeList){ public void setBusinessScopeList(List<String> businessScopeList){
this.businessScopeList = businessScopeList; this.businessScopeList = businessScopeList;
} }
/** /**
* 获取 经营范围 * 获取 经营范围
* @return businessScopeNotList * @return businessScopeNotList
*/ */
public List<String> getBusinessScopeNotList(){ public List<String> getBusinessScopeNotList(){
return this.businessScopeNotList; return this.businessScopeNotList;
} }
/** /**
* 设置 经营范围 * 设置 经营范围
* @param businessScopeNotList * @param businessScopeNotList
*/ */
public void setBusinessScopeNotList(List<String> businessScopeNotList){ public void setBusinessScopeNotList(List<String> businessScopeNotList){
this.businessScopeNotList = businessScopeNotList; this.businessScopeNotList = businessScopeNotList;
} }
/** /**
* 获取 经营地址 * 获取 经营地址
* @return businessAdressList * @return businessAdressList
*/ */
public List<String> getBusinessAdressList(){ public List<String> getBusinessAdressList(){
return this.businessAdressList; return this.businessAdressList;
} }
/** /**
* 设置 经营地址 * 设置 经营地址
* @param businessAdressList * @param businessAdressList
*/ */
public void setBusinessAdressList(List<String> businessAdressList){ public void setBusinessAdressList(List<String> businessAdressList){
this.businessAdressList = businessAdressList; this.businessAdressList = businessAdressList;
} }
/** /**
* 获取 经营地址 * 获取 经营地址
* @return businessAdressNotList * @return businessAdressNotList
*/ */
public List<String> getBusinessAdressNotList(){ public List<String> getBusinessAdressNotList(){
return this.businessAdressNotList; return this.businessAdressNotList;
} }
/** /**
* 设置 经营地址 * 设置 经营地址
* @param businessAdressNotList * @param businessAdressNotList
*/ */
public void setBusinessAdressNotList(List<String> businessAdressNotList){ public void setBusinessAdressNotList(List<String> businessAdressNotList){
this.businessAdressNotList = businessAdressNotList; this.businessAdressNotList = businessAdressNotList;
} }
/** /**
* 获取 所在地 * 获取 所在地
* @return locationList * @return locationList
*/ */
public List<String> getLocationList(){ public List<String> getLocationList(){
return this.locationList; return this.locationList;
} }
/** /**
* 设置 所在地 * 设置 所在地
* @param locationList * @param locationList
*/ */
public void setLocationList(List<String> locationList){ public void setLocationList(List<String> locationList){
this.locationList = locationList; this.locationList = locationList;
} }
/** /**
* 获取 所在地 * 获取 所在地
* @return locationNotList * @return locationNotList
*/ */
public List<String> getLocationNotList(){ public List<String> getLocationNotList(){
return this.locationNotList; return this.locationNotList;
} }
/** /**
* 设置 所在地 * 设置 所在地
* @param locationNotList * @param locationNotList
*/ */
public void setLocationNotList(List<String> locationNotList){ public void setLocationNotList(List<String> locationNotList){
this.locationNotList = locationNotList; this.locationNotList = locationNotList;
} }
/** /**
* 获取 所属区域编码 * 获取 所属区域编码
* @return areaCodeList * @return areaCodeList
*/ */
public List<String> getAreaCodeList(){ public List<String> getAreaCodeList(){
return this.areaCodeList; return this.areaCodeList;
} }
/** /**
* 设置 所属区域编码 * 设置 所属区域编码
* @param areaCodeList * @param areaCodeList
*/ */
public void setAreaCodeList(List<String> areaCodeList){ public void setAreaCodeList(List<String> areaCodeList){
this.areaCodeList = areaCodeList; this.areaCodeList = areaCodeList;
} }
/** /**
* 获取 所属区域编码 * 获取 所属区域编码
* @return areaCodeNotList * @return areaCodeNotList
*/ */
public List<String> getAreaCodeNotList(){ public List<String> getAreaCodeNotList(){
return this.areaCodeNotList; return this.areaCodeNotList;
} }
/** /**
* 设置 所属区域编码 * 设置 所属区域编码
* @param areaCodeNotList * @param areaCodeNotList
*/ */
public void setAreaCodeNotList(List<String> areaCodeNotList){ public void setAreaCodeNotList(List<String> areaCodeNotList){
this.areaCodeNotList = areaCodeNotList; this.areaCodeNotList = areaCodeNotList;
} }
/** /**
* 获取 所属区域名称 * 获取 所属区域名称
* @return areaNameList * @return areaNameList
*/ */
public List<String> getAreaNameList(){ public List<String> getAreaNameList(){
return this.areaNameList; return this.areaNameList;
} }
/** /**
* 设置 所属区域名称 * 设置 所属区域名称
* @param areaNameList * @param areaNameList
*/ */
public void setAreaNameList(List<String> areaNameList){ public void setAreaNameList(List<String> areaNameList){
this.areaNameList = areaNameList; this.areaNameList = areaNameList;
} }
/** /**
* 获取 所属区域名称 * 获取 所属区域名称
* @return areaNameNotList * @return areaNameNotList
*/ */
public List<String> getAreaNameNotList(){ public List<String> getAreaNameNotList(){
return this.areaNameNotList; return this.areaNameNotList;
} }
/** /**
* 设置 所属区域名称 * 设置 所属区域名称
* @param areaNameNotList * @param areaNameNotList
*/ */
public void setAreaNameNotList(List<String> areaNameNotList){ public void setAreaNameNotList(List<String> areaNameNotList){
this.areaNameNotList = areaNameNotList; this.areaNameNotList = areaNameNotList;
} }
/** /**
* 获取 联系电话 * 获取 联系电话
* @return contactPhoneList * @return contactPhoneList
*/ */
public List<String> getContactPhoneList(){ public List<String> getContactPhoneList(){
return this.contactPhoneList; return this.contactPhoneList;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param contactPhoneList * @param contactPhoneList
*/ */
public void setContactPhoneList(List<String> contactPhoneList){ public void setContactPhoneList(List<String> contactPhoneList){
this.contactPhoneList = contactPhoneList; this.contactPhoneList = contactPhoneList;
} }
/** /**
* 获取 联系电话 * 获取 联系电话
* @return contactPhoneNotList * @return contactPhoneNotList
*/ */
public List<String> getContactPhoneNotList(){ public List<String> getContactPhoneNotList(){
return this.contactPhoneNotList; return this.contactPhoneNotList;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param contactPhoneNotList * @param contactPhoneNotList
*/ */
public void setContactPhoneNotList(List<String> contactPhoneNotList){ public void setContactPhoneNotList(List<String> contactPhoneNotList){
this.contactPhoneNotList = contactPhoneNotList; this.contactPhoneNotList = contactPhoneNotList;
} }
/** /**
* 获取 电子邮件地址 * 获取 电子邮件地址
* @return emailList * @return emailList
*/ */
public List<String> getEmailList(){ public List<String> getEmailList(){
return this.emailList; return this.emailList;
} }
/** /**
* 设置 电子邮件地址 * 设置 电子邮件地址
* @param emailList * @param emailList
*/ */
public void setEmailList(List<String> emailList){ public void setEmailList(List<String> emailList){
this.emailList = emailList; this.emailList = emailList;
} }
/** /**
* 获取 电子邮件地址 * 获取 电子邮件地址
* @return emailNotList * @return emailNotList
*/ */
public List<String> getEmailNotList(){ public List<String> getEmailNotList(){
return this.emailNotList; return this.emailNotList;
} }
/** /**
* 设置 电子邮件地址 * 设置 电子邮件地址
* @param emailNotList * @param emailNotList
*/ */
public void setEmailNotList(List<String> emailNotList){ public void setEmailNotList(List<String> emailNotList){
this.emailNotList = emailNotList; this.emailNotList = emailNotList;
} }
/** /**
* 获取 公司网站 * 获取 公司网站
* @return websiteList * @return websiteList
*/ */
public List<String> getWebsiteList(){ public List<String> getWebsiteList(){
return this.websiteList; return this.websiteList;
} }
/** /**
* 设置 公司网站 * 设置 公司网站
* @param websiteList * @param websiteList
*/ */
public void setWebsiteList(List<String> websiteList){ public void setWebsiteList(List<String> websiteList){
this.websiteList = websiteList; this.websiteList = websiteList;
} }
/** /**
* 获取 公司网站 * 获取 公司网站
* @return websiteNotList * @return websiteNotList
*/ */
public List<String> getWebsiteNotList(){ public List<String> getWebsiteNotList(){
return this.websiteNotList; return this.websiteNotList;
} }
/** /**
* 设置 公司网站 * 设置 公司网站
* @param websiteNotList * @param websiteNotList
*/ */
public void setWebsiteNotList(List<String> websiteNotList){ public void setWebsiteNotList(List<String> websiteNotList){
this.websiteNotList = websiteNotList; this.websiteNotList = websiteNotList;
} }
/** /**
* 获取 税务登记号 * 获取 税务登记号
* @return taxRegistrationNumberList * @return taxRegistrationNumberList
*/ */
public List<String> getTaxRegistrationNumberList(){ public List<String> getTaxRegistrationNumberList(){
return this.taxRegistrationNumberList; return this.taxRegistrationNumberList;
} }
/** /**
* 设置 税务登记号 * 设置 税务登记号
* @param taxRegistrationNumberList * @param taxRegistrationNumberList
*/ */
public void setTaxRegistrationNumberList(List<String> taxRegistrationNumberList){ public void setTaxRegistrationNumberList(List<String> taxRegistrationNumberList){
this.taxRegistrationNumberList = taxRegistrationNumberList; this.taxRegistrationNumberList = taxRegistrationNumberList;
} }
/** /**
* 获取 税务登记号 * 获取 税务登记号
* @return taxRegistrationNumberNotList * @return taxRegistrationNumberNotList
*/ */
public List<String> getTaxRegistrationNumberNotList(){ public List<String> getTaxRegistrationNumberNotList(){
return this.taxRegistrationNumberNotList; return this.taxRegistrationNumberNotList;
} }
/** /**
* 设置 税务登记号 * 设置 税务登记号
* @param taxRegistrationNumberNotList * @param taxRegistrationNumberNotList
*/ */
public void setTaxRegistrationNumberNotList(List<String> taxRegistrationNumberNotList){ public void setTaxRegistrationNumberNotList(List<String> taxRegistrationNumberNotList){
this.taxRegistrationNumberNotList = taxRegistrationNumberNotList; this.taxRegistrationNumberNotList = taxRegistrationNumberNotList;
} }
/** /**
* 获取 社会信用代码 * 获取 社会信用代码
* @return socialCreditCodeList * @return socialCreditCodeList
*/ */
public List<String> getSocialCreditCodeList(){ public List<String> getSocialCreditCodeList(){
return this.socialCreditCodeList; return this.socialCreditCodeList;
} }
/** /**
* 设置 社会信用代码 * 设置 社会信用代码
* @param socialCreditCodeList * @param socialCreditCodeList
*/ */
public void setSocialCreditCodeList(List<String> socialCreditCodeList){ public void setSocialCreditCodeList(List<String> socialCreditCodeList){
this.socialCreditCodeList = socialCreditCodeList; this.socialCreditCodeList = socialCreditCodeList;
} }
/** /**
* 获取 社会信用代码 * 获取 社会信用代码
* @return socialCreditCodeNotList * @return socialCreditCodeNotList
*/ */
public List<String> getSocialCreditCodeNotList(){ public List<String> getSocialCreditCodeNotList(){
return this.socialCreditCodeNotList; return this.socialCreditCodeNotList;
} }
/** /**
* 设置 社会信用代码 * 设置 社会信用代码
* @param socialCreditCodeNotList * @param socialCreditCodeNotList
*/ */
public void setSocialCreditCodeNotList(List<String> socialCreditCodeNotList){ public void setSocialCreditCodeNotList(List<String> socialCreditCodeNotList){
this.socialCreditCodeNotList = socialCreditCodeNotList; this.socialCreditCodeNotList = socialCreditCodeNotList;
} }
/** /**
* 获取 商标信息 * 获取 商标信息
* @return trademarkInfoList * @return trademarkInfoList
*/ */
public List<String> getTrademarkInfoList(){ public List<String> getTrademarkInfoList(){
return this.trademarkInfoList; return this.trademarkInfoList;
} }
/** /**
* 设置 商标信息 * 设置 商标信息
* @param trademarkInfoList * @param trademarkInfoList
*/ */
public void setTrademarkInfoList(List<String> trademarkInfoList){ public void setTrademarkInfoList(List<String> trademarkInfoList){
this.trademarkInfoList = trademarkInfoList; this.trademarkInfoList = trademarkInfoList;
} }
/** /**
* 获取 商标信息 * 获取 商标信息
* @return trademarkInfoNotList * @return trademarkInfoNotList
*/ */
public List<String> getTrademarkInfoNotList(){ public List<String> getTrademarkInfoNotList(){
return this.trademarkInfoNotList; return this.trademarkInfoNotList;
} }
/** /**
* 设置 商标信息 * 设置 商标信息
* @param trademarkInfoNotList * @param trademarkInfoNotList
*/ */
public void setTrademarkInfoNotList(List<String> trademarkInfoNotList){ public void setTrademarkInfoNotList(List<String> trademarkInfoNotList){
this.trademarkInfoNotList = trademarkInfoNotList; this.trademarkInfoNotList = trademarkInfoNotList;
} }
/** /**
* 获取 网站历史备案信息 * 获取 网站历史备案信息
* @return websiteRegistrationInfoList * @return websiteRegistrationInfoList
*/ */
public List<String> getWebsiteRegistrationInfoList(){ public List<String> getWebsiteRegistrationInfoList(){
return this.websiteRegistrationInfoList; return this.websiteRegistrationInfoList;
} }
/** /**
* 设置 网站历史备案信息 * 设置 网站历史备案信息
* @param websiteRegistrationInfoList * @param websiteRegistrationInfoList
*/ */
public void setWebsiteRegistrationInfoList(List<String> websiteRegistrationInfoList){ public void setWebsiteRegistrationInfoList(List<String> websiteRegistrationInfoList){
this.websiteRegistrationInfoList = websiteRegistrationInfoList; this.websiteRegistrationInfoList = websiteRegistrationInfoList;
} }
/** /**
* 获取 网站历史备案信息 * 获取 网站历史备案信息
* @return websiteRegistrationInfoNotList * @return websiteRegistrationInfoNotList
*/ */
public List<String> getWebsiteRegistrationInfoNotList(){ public List<String> getWebsiteRegistrationInfoNotList(){
return this.websiteRegistrationInfoNotList; return this.websiteRegistrationInfoNotList;
} }
/** /**
* 设置 网站历史备案信息 * 设置 网站历史备案信息
* @param websiteRegistrationInfoNotList * @param websiteRegistrationInfoNotList
*/ */
public void setWebsiteRegistrationInfoNotList(List<String> websiteRegistrationInfoNotList){ public void setWebsiteRegistrationInfoNotList(List<String> websiteRegistrationInfoNotList){
this.websiteRegistrationInfoNotList = websiteRegistrationInfoNotList; this.websiteRegistrationInfoNotList = websiteRegistrationInfoNotList;
} }
/** /**
* 获取 开始 员工总数 * 获取 开始 员工总数
* @return totalEmployeesStart * @return totalEmployeesStart
*/ */
public Integer getTotalEmployeesStart(){ public Integer getTotalEmployeesStart(){
return this.totalEmployeesStart; return this.totalEmployeesStart;
} }
/** /**
* 设置 开始 员工总数 * 设置 开始 员工总数
* @param totalEmployeesStart * @param totalEmployeesStart
*/ */
public void setTotalEmployeesStart(Integer totalEmployeesStart){ public void setTotalEmployeesStart(Integer totalEmployeesStart){
this.totalEmployeesStart = totalEmployeesStart; this.totalEmployeesStart = totalEmployeesStart;
} }
/** /**
* 获取 结束 员工总数 * 获取 结束 员工总数
* @return $totalEmployeesEnd * @return $totalEmployeesEnd
*/ */
public Integer getTotalEmployeesEnd(){ public Integer getTotalEmployeesEnd(){
return this.totalEmployeesEnd; return this.totalEmployeesEnd;
} }
/** /**
* 设置 结束 员工总数 * 设置 结束 员工总数
* @param totalEmployeesEnd * @param totalEmployeesEnd
*/ */
public void setTotalEmployeesEnd(Integer totalEmployeesEnd){ public void setTotalEmployeesEnd(Integer totalEmployeesEnd){
this.totalEmployeesEnd = totalEmployeesEnd; this.totalEmployeesEnd = totalEmployeesEnd;
} }
/** /**
* 获取 增加 员工总数 * 获取 增加 员工总数
* @return totalEmployeesIncrement * @return totalEmployeesIncrement
*/ */
public Integer getTotalEmployeesIncrement(){ public Integer getTotalEmployeesIncrement(){
return this.totalEmployeesIncrement; return this.totalEmployeesIncrement;
} }
/** /**
* 设置 增加 员工总数 * 设置 增加 员工总数
* @param totalEmployeesIncrement * @param totalEmployeesIncrement
*/ */
public void setTotalEmployeesIncrement(Integer totalEmployeesIncrement){ public void setTotalEmployeesIncrement(Integer totalEmployeesIncrement){
this.totalEmployeesIncrement = totalEmployeesIncrement; this.totalEmployeesIncrement = totalEmployeesIncrement;
} }
/** /**
* 获取 员工总数 * 获取 员工总数
* @return totalEmployeesList * @return totalEmployeesList
*/ */
public List<Integer> getTotalEmployeesList(){ public List<Integer> getTotalEmployeesList(){
return this.totalEmployeesList; return this.totalEmployeesList;
} }
/** /**
* 设置 员工总数 * 设置 员工总数
* @param totalEmployeesList * @param totalEmployeesList
*/ */
public void setTotalEmployeesList(List<Integer> totalEmployeesList){ public void setTotalEmployeesList(List<Integer> totalEmployeesList){
this.totalEmployeesList = totalEmployeesList; this.totalEmployeesList = totalEmployeesList;
} }
/** /**
* 获取 员工总数 * 获取 员工总数
* @return totalEmployeesNotList * @return totalEmployeesNotList
*/ */
public List<Integer> getTotalEmployeesNotList(){ public List<Integer> getTotalEmployeesNotList(){
return this.totalEmployeesNotList; return this.totalEmployeesNotList;
} }
/** /**
* 设置 员工总数 * 设置 员工总数
* @param totalEmployeesNotList * @param totalEmployeesNotList
*/ */
public void setTotalEmployeesNotList(List<Integer> totalEmployeesNotList){ public void setTotalEmployeesNotList(List<Integer> totalEmployeesNotList){
this.totalEmployeesNotList = totalEmployeesNotList; this.totalEmployeesNotList = totalEmployeesNotList;
} }
/** /**
* 获取 开始 软件著作权数量 * 获取 开始 软件著作权数量
* @return softNumStart * @return softNumStart
*/ */
public Integer getSoftNumStart(){ public Integer getSoftNumStart(){
return this.softNumStart; return this.softNumStart;
} }
/** /**
* 设置 开始 软件著作权数量 * 设置 开始 软件著作权数量
* @param softNumStart * @param softNumStart
*/ */
public void setSoftNumStart(Integer softNumStart){ public void setSoftNumStart(Integer softNumStart){
this.softNumStart = softNumStart; this.softNumStart = softNumStart;
} }
/** /**
* 获取 结束 软件著作权数量 * 获取 结束 软件著作权数量
* @return $softNumEnd * @return $softNumEnd
*/ */
public Integer getSoftNumEnd(){ public Integer getSoftNumEnd(){
return this.softNumEnd; return this.softNumEnd;
} }
/** /**
* 设置 结束 软件著作权数量 * 设置 结束 软件著作权数量
* @param softNumEnd * @param softNumEnd
*/ */
public void setSoftNumEnd(Integer softNumEnd){ public void setSoftNumEnd(Integer softNumEnd){
this.softNumEnd = softNumEnd; this.softNumEnd = softNumEnd;
} }
/** /**
* 获取 增加 软件著作权数量 * 获取 增加 软件著作权数量
* @return softNumIncrement * @return softNumIncrement
*/ */
public Integer getSoftNumIncrement(){ public Integer getSoftNumIncrement(){
return this.softNumIncrement; return this.softNumIncrement;
} }
/** /**
* 设置 增加 软件著作权数量 * 设置 增加 软件著作权数量
* @param softNumIncrement * @param softNumIncrement
*/ */
public void setSoftNumIncrement(Integer softNumIncrement){ public void setSoftNumIncrement(Integer softNumIncrement){
this.softNumIncrement = softNumIncrement; this.softNumIncrement = softNumIncrement;
} }
/** /**
* 获取 软件著作权数量 * 获取 软件著作权数量
* @return softNumList * @return softNumList
*/ */
public List<Integer> getSoftNumList(){ public List<Integer> getSoftNumList(){
return this.softNumList; return this.softNumList;
} }
/** /**
* 设置 软件著作权数量 * 设置 软件著作权数量
* @param softNumList * @param softNumList
*/ */
public void setSoftNumList(List<Integer> softNumList){ public void setSoftNumList(List<Integer> softNumList){
this.softNumList = softNumList; this.softNumList = softNumList;
} }
/** /**
* 获取 软件著作权数量 * 获取 软件著作权数量
* @return softNumNotList * @return softNumNotList
*/ */
public List<Integer> getSoftNumNotList(){ public List<Integer> getSoftNumNotList(){
return this.softNumNotList; return this.softNumNotList;
} }
/** /**
* 设置 软件著作权数量 * 设置 软件著作权数量
* @param softNumNotList * @param softNumNotList
*/ */
public void setSoftNumNotList(List<Integer> softNumNotList){ public void setSoftNumNotList(List<Integer> softNumNotList){
this.softNumNotList = softNumNotList; this.softNumNotList = softNumNotList;
} }
/** /**
* 获取 开始 专利数量 * 获取 开始 专利数量
* @return patentNumStart * @return patentNumStart
*/ */
public Integer getPatentNumStart(){ public Integer getPatentNumStart(){
return this.patentNumStart; return this.patentNumStart;
} }
/** /**
* 设置 开始 专利数量 * 设置 开始 专利数量
* @param patentNumStart * @param patentNumStart
*/ */
public void setPatentNumStart(Integer patentNumStart){ public void setPatentNumStart(Integer patentNumStart){
this.patentNumStart = patentNumStart; this.patentNumStart = patentNumStart;
} }
/** /**
* 获取 结束 专利数量 * 获取 结束 专利数量
* @return $patentNumEnd * @return $patentNumEnd
*/ */
public Integer getPatentNumEnd(){ public Integer getPatentNumEnd(){
return this.patentNumEnd; return this.patentNumEnd;
} }
/** /**
* 设置 结束 专利数量 * 设置 结束 专利数量
* @param patentNumEnd * @param patentNumEnd
*/ */
public void setPatentNumEnd(Integer patentNumEnd){ public void setPatentNumEnd(Integer patentNumEnd){
this.patentNumEnd = patentNumEnd; this.patentNumEnd = patentNumEnd;
} }
/** /**
* 获取 增加 专利数量 * 获取 增加 专利数量
* @return patentNumIncrement * @return patentNumIncrement
*/ */
public Integer getPatentNumIncrement(){ public Integer getPatentNumIncrement(){
return this.patentNumIncrement; return this.patentNumIncrement;
} }
/** /**
* 设置 增加 专利数量 * 设置 增加 专利数量
* @param patentNumIncrement * @param patentNumIncrement
*/ */
public void setPatentNumIncrement(Integer patentNumIncrement){ public void setPatentNumIncrement(Integer patentNumIncrement){
this.patentNumIncrement = patentNumIncrement; this.patentNumIncrement = patentNumIncrement;
} }
/** /**
* 获取 专利数量 * 获取 专利数量
* @return patentNumList * @return patentNumList
*/ */
public List<Integer> getPatentNumList(){ public List<Integer> getPatentNumList(){
return this.patentNumList; return this.patentNumList;
} }
/** /**
* 设置 专利数量 * 设置 专利数量
* @param patentNumList * @param patentNumList
*/ */
public void setPatentNumList(List<Integer> patentNumList){ public void setPatentNumList(List<Integer> patentNumList){
this.patentNumList = patentNumList; this.patentNumList = patentNumList;
} }
/** /**
* 获取 专利数量 * 获取 专利数量
* @return patentNumNotList * @return patentNumNotList
*/ */
public List<Integer> getPatentNumNotList(){ public List<Integer> getPatentNumNotList(){
return this.patentNumNotList; return this.patentNumNotList;
} }
/** /**
* 设置 专利数量 * 设置 专利数量
* @param patentNumNotList * @param patentNumNotList
*/ */
public void setPatentNumNotList(List<Integer> patentNumNotList){ public void setPatentNumNotList(List<Integer> patentNumNotList){
this.patentNumNotList = patentNumNotList; this.patentNumNotList = patentNumNotList;
} }
/** /**
* 获取 历史发展 * 获取 历史发展
* @return hisDevelopList * @return hisDevelopList
*/ */
public List<String> getHisDevelopList(){ public List<String> getHisDevelopList(){
return this.hisDevelopList; return this.hisDevelopList;
} }
/** /**
* 设置 历史发展 * 设置 历史发展
* @param hisDevelopList * @param hisDevelopList
*/ */
public void setHisDevelopList(List<String> hisDevelopList){ public void setHisDevelopList(List<String> hisDevelopList){
this.hisDevelopList = hisDevelopList; this.hisDevelopList = hisDevelopList;
} }
/** /**
* 获取 历史发展 * 获取 历史发展
* @return hisDevelopNotList * @return hisDevelopNotList
*/ */
public List<String> getHisDevelopNotList(){ public List<String> getHisDevelopNotList(){
return this.hisDevelopNotList; return this.hisDevelopNotList;
} }
/** /**
* 设置 历史发展 * 设置 历史发展
* @param hisDevelopNotList * @param hisDevelopNotList
*/ */
public void setHisDevelopNotList(List<String> hisDevelopNotList){ public void setHisDevelopNotList(List<String> hisDevelopNotList){
this.hisDevelopNotList = hisDevelopNotList; this.hisDevelopNotList = hisDevelopNotList;
} }
/** /**
* 获取 经度 * 获取 经度
* @return lonList * @return lonList
*/ */
public List<String> getLonList(){ public List<String> getLonList(){
return this.lonList; return this.lonList;
} }
/** /**
* 设置 经度 * 设置 经度
* @param lonList * @param lonList
*/ */
public void setLonList(List<String> lonList){ public void setLonList(List<String> lonList){
this.lonList = lonList; this.lonList = lonList;
} }
/** /**
* 获取 经度 * 获取 经度
* @return lonNotList * @return lonNotList
*/ */
public List<String> getLonNotList(){ public List<String> getLonNotList(){
return this.lonNotList; return this.lonNotList;
} }
/** /**
* 设置 经度 * 设置 经度
* @param lonNotList * @param lonNotList
*/ */
public void setLonNotList(List<String> lonNotList){ public void setLonNotList(List<String> lonNotList){
this.lonNotList = lonNotList; this.lonNotList = lonNotList;
} }
/** /**
* 获取 纬度 * 获取 纬度
* @return latiList * @return latiList
*/ */
public List<String> getLatiList(){ public List<String> getLatiList(){
return this.latiList; return this.latiList;
} }
/** /**
* 设置 纬度 * 设置 纬度
* @param latiList * @param latiList
*/ */
public void setLatiList(List<String> latiList){ public void setLatiList(List<String> latiList){
this.latiList = latiList; this.latiList = latiList;
} }
/** /**
* 获取 纬度 * 获取 纬度
* @return latiNotList * @return latiNotList
*/ */
public List<String> getLatiNotList(){ public List<String> getLatiNotList(){
return this.latiNotList; return this.latiNotList;
} }
/** /**
* 设置 纬度 * 设置 纬度
* @param latiNotList * @param latiNotList
*/ */
public void setLatiNotList(List<String> latiNotList){ public void setLatiNotList(List<String> latiNotList){
this.latiNotList = latiNotList; this.latiNotList = latiNotList;
} }
/** /**
* 获取 企业logo * 获取 企业logo
* @return logoPathList * @return logoPathList
*/ */
public List<String> getLogoPathList(){ public List<String> getLogoPathList(){
return this.logoPathList; return this.logoPathList;
} }
/** /**
* 设置 企业logo * 设置 企业logo
* @param logoPathList * @param logoPathList
*/ */
public void setLogoPathList(List<String> logoPathList){ public void setLogoPathList(List<String> logoPathList){
this.logoPathList = logoPathList; this.logoPathList = logoPathList;
} }
/** /**
* 获取 企业logo * 获取 企业logo
* @return logoPathNotList * @return logoPathNotList
*/ */
public List<String> getLogoPathNotList(){ public List<String> getLogoPathNotList(){
return this.logoPathNotList; return this.logoPathNotList;
} }
/** /**
* 设置 企业logo * 设置 企业logo
* @param logoPathNotList * @param logoPathNotList
*/ */
public void setLogoPathNotList(List<String> logoPathNotList){ public void setLogoPathNotList(List<String> logoPathNotList){
this.logoPathNotList = logoPathNotList; this.logoPathNotList = logoPathNotList;
} }
/** /**
* 获取 企业视频 * 获取 企业视频
* @return companyVideoPathList * @return companyVideoPathList
*/ */
public List<String> getCompanyVideoPathList(){ public List<String> getCompanyVideoPathList(){
return this.companyVideoPathList; return this.companyVideoPathList;
} }
/** /**
* 设置 企业视频 * 设置 企业视频
* @param companyVideoPathList * @param companyVideoPathList
*/ */
public void setCompanyVideoPathList(List<String> companyVideoPathList){ public void setCompanyVideoPathList(List<String> companyVideoPathList){
this.companyVideoPathList = companyVideoPathList; this.companyVideoPathList = companyVideoPathList;
} }
/** /**
* 获取 企业视频 * 获取 企业视频
* @return companyVideoPathNotList * @return companyVideoPathNotList
*/ */
public List<String> getCompanyVideoPathNotList(){ public List<String> getCompanyVideoPathNotList(){
return this.companyVideoPathNotList; return this.companyVideoPathNotList;
} }
/** /**
* 设置 企业视频 * 设置 企业视频
* @param companyVideoPathNotList * @param companyVideoPathNotList
*/ */
public void setCompanyVideoPathNotList(List<String> companyVideoPathNotList){ public void setCompanyVideoPathNotList(List<String> companyVideoPathNotList){
this.companyVideoPathNotList = companyVideoPathNotList; this.companyVideoPathNotList = companyVideoPathNotList;
} }
/** /**
* 获取 企业宣传图片 * 获取 企业宣传图片
* @return companyPicPathList * @return companyPicPathList
*/ */
public List<String> getCompanyPicPathList(){ public List<String> getCompanyPicPathList(){
return this.companyPicPathList; return this.companyPicPathList;
} }
/** /**
* 设置 企业宣传图片 * 设置 企业宣传图片
* @param companyPicPathList * @param companyPicPathList
*/ */
public void setCompanyPicPathList(List<String> companyPicPathList){ public void setCompanyPicPathList(List<String> companyPicPathList){
this.companyPicPathList = companyPicPathList; this.companyPicPathList = companyPicPathList;
} }
/** /**
* 获取 企业宣传图片 * 获取 企业宣传图片
* @return companyPicPathNotList * @return companyPicPathNotList
*/ */
public List<String> getCompanyPicPathNotList(){ public List<String> getCompanyPicPathNotList(){
return this.companyPicPathNotList; return this.companyPicPathNotList;
} }
/** /**
* 设置 企业宣传图片 * 设置 企业宣传图片
* @param companyPicPathNotList * @param companyPicPathNotList
*/ */
public void setCompanyPicPathNotList(List<String> companyPicPathNotList){ public void setCompanyPicPathNotList(List<String> companyPicPathNotList){
this.companyPicPathNotList = companyPicPathNotList; this.companyPicPathNotList = companyPicPathNotList;
} }
/** /**
* 获取 公司介绍 * 获取 公司介绍
* @return companyIntroductionList * @return companyIntroductionList
*/ */
public List<String> getCompanyIntroductionList(){ public List<String> getCompanyIntroductionList(){
return this.companyIntroductionList; return this.companyIntroductionList;
} }
/** /**
* 设置 公司介绍 * 设置 公司介绍
* @param companyIntroductionList * @param companyIntroductionList
*/ */
public void setCompanyIntroductionList(List<String> companyIntroductionList){ public void setCompanyIntroductionList(List<String> companyIntroductionList){
this.companyIntroductionList = companyIntroductionList; this.companyIntroductionList = companyIntroductionList;
} }
/** /**
* 获取 公司介绍 * 获取 公司介绍
* @return companyIntroductionNotList * @return companyIntroductionNotList
*/ */
public List<String> getCompanyIntroductionNotList(){ public List<String> getCompanyIntroductionNotList(){
return this.companyIntroductionNotList; return this.companyIntroductionNotList;
} }
/** /**
* 设置 公司介绍 * 设置 公司介绍
* @param companyIntroductionNotList * @param companyIntroductionNotList
*/ */
public void setCompanyIntroductionNotList(List<String> companyIntroductionNotList){ public void setCompanyIntroductionNotList(List<String> companyIntroductionNotList){
this.companyIntroductionNotList = companyIntroductionNotList; this.companyIntroductionNotList = companyIntroductionNotList;
} }
/** /**
* 获取 公司文化 * 获取 公司文化
* @return companyCultureList * @return companyCultureList
*/ */
public List<String> getCompanyCultureList(){ public List<String> getCompanyCultureList(){
return this.companyCultureList; return this.companyCultureList;
} }
/** /**
* 设置 公司文化 * 设置 公司文化
* @param companyCultureList * @param companyCultureList
*/ */
public void setCompanyCultureList(List<String> companyCultureList){ public void setCompanyCultureList(List<String> companyCultureList){
this.companyCultureList = companyCultureList; this.companyCultureList = companyCultureList;
} }
/** /**
* 获取 公司文化 * 获取 公司文化
* @return companyCultureNotList * @return companyCultureNotList
*/ */
public List<String> getCompanyCultureNotList(){ public List<String> getCompanyCultureNotList(){
return this.companyCultureNotList; return this.companyCultureNotList;
} }
/** /**
* 设置 公司文化 * 设置 公司文化
* @param companyCultureNotList * @param companyCultureNotList
*/ */
public void setCompanyCultureNotList(List<String> companyCultureNotList){ public void setCompanyCultureNotList(List<String> companyCultureNotList){
this.companyCultureNotList = companyCultureNotList; this.companyCultureNotList = companyCultureNotList;
} }
/** /**
* 获取 开始 排序 * 获取 开始 排序
* @return sortStart * @return sortStart
*/ */
public Integer getSortStart(){ public Integer getSortStart(){
return this.sortStart; return this.sortStart;
} }
/** /**
* 设置 开始 排序 * 设置 开始 排序
* @param sortStart * @param sortStart
*/ */
public void setSortStart(Integer sortStart){ public void setSortStart(Integer sortStart){
this.sortStart = sortStart; this.sortStart = sortStart;
} }
/** /**
* 获取 结束 排序 * 获取 结束 排序
* @return $sortEnd * @return $sortEnd
*/ */
public Integer getSortEnd(){ public Integer getSortEnd(){
return this.sortEnd; return this.sortEnd;
} }
/** /**
* 设置 结束 排序 * 设置 结束 排序
* @param sortEnd * @param sortEnd
*/ */
public void setSortEnd(Integer sortEnd){ public void setSortEnd(Integer sortEnd){
this.sortEnd = sortEnd; this.sortEnd = sortEnd;
} }
/** /**
* 获取 增加 排序 * 获取 增加 排序
* @return sortIncrement * @return sortIncrement
*/ */
public Integer getSortIncrement(){ public Integer getSortIncrement(){
return this.sortIncrement; return this.sortIncrement;
} }
/** /**
* 设置 增加 排序 * 设置 增加 排序
* @param sortIncrement * @param sortIncrement
*/ */
public void setSortIncrement(Integer sortIncrement){ public void setSortIncrement(Integer sortIncrement){
this.sortIncrement = sortIncrement; this.sortIncrement = sortIncrement;
} }
/** /**
* 获取 排序 * 获取 排序
* @return sortList * @return sortList
*/ */
public List<Integer> getSortList(){ public List<Integer> getSortList(){
return this.sortList; return this.sortList;
} }
/** /**
* 设置 排序 * 设置 排序
* @param sortList * @param sortList
*/ */
public void setSortList(List<Integer> sortList){ public void setSortList(List<Integer> sortList){
this.sortList = sortList; this.sortList = sortList;
} }
/** /**
* 获取 排序 * 获取 排序
* @return sortNotList * @return sortNotList
*/ */
public List<Integer> getSortNotList(){ public List<Integer> getSortNotList(){
return this.sortNotList; return this.sortNotList;
} }
/** /**
* 设置 排序 * 设置 排序
* @param sortNotList * @param sortNotList
*/ */
public void setSortNotList(List<Integer> sortNotList){ public void setSortNotList(List<Integer> sortNotList){
this.sortNotList = sortNotList; this.sortNotList = sortNotList;
} }
/** /**
* 获取 开始 成立日期 * 获取 开始 成立日期
* @return establishDateStart * @return establishDateStart
*/ */
public String getEstablishDateStart(){ public String getEstablishDateStart(){
return this.establishDateStart; return this.establishDateStart;
} }
/** /**
* 设置 开始 成立日期 * 设置 开始 成立日期
* @param establishDateStart * @param establishDateStart
*/ */
public void setEstablishDateStart(String establishDateStart){ public void setEstablishDateStart(String establishDateStart){
this.establishDateStart = establishDateStart; this.establishDateStart = establishDateStart;
} }
/** /**
* 获取 结束 成立日期 * 获取 结束 成立日期
* @return establishDateEnd * @return establishDateEnd
*/ */
public String getEstablishDateEnd(){ public String getEstablishDateEnd(){
return this.establishDateEnd; return this.establishDateEnd;
} }
/** /**
* 设置 结束 成立日期 * 设置 结束 成立日期
* @param establishDateEnd * @param establishDateEnd
*/ */
public void setEstablishDateEnd(String establishDateEnd){ public void setEstablishDateEnd(String establishDateEnd){
this.establishDateEnd = establishDateEnd; this.establishDateEnd = establishDateEnd;
} }
/** /**
* 获取 备注 * 获取 备注
* @return remarkList * @return remarkList
*/ */
public List<String> getRemarkList(){ public List<String> getRemarkList(){
return this.remarkList; return this.remarkList;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkList * @param remarkList
*/ */
public void setRemarkList(List<String> remarkList){ public void setRemarkList(List<String> remarkList){
this.remarkList = remarkList; this.remarkList = remarkList;
} }
/** /**
* 获取 备注 * 获取 备注
* @return remarkNotList * @return remarkNotList
*/ */
public List<String> getRemarkNotList(){ public List<String> getRemarkNotList(){
return this.remarkNotList; return this.remarkNotList;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkNotList * @param remarkNotList
*/ */
public void setRemarkNotList(List<String> remarkNotList){ public void setRemarkNotList(List<String> remarkNotList){
this.remarkNotList = remarkNotList; this.remarkNotList = remarkNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
*/ */
public Long getCreateUserIdStart(){ public Long getCreateUserIdStart(){
return this.createUserIdStart; return this.createUserIdStart;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public void setCreateUserIdStart(Long createUserIdStart){ public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
} }
/** /**
* 获取 结束 创建用户 * 获取 结束 创建用户
* @return $createUserIdEnd * @return $createUserIdEnd
*/ */
public Long getCreateUserIdEnd(){ public Long getCreateUserIdEnd(){
return this.createUserIdEnd; return this.createUserIdEnd;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public void setCreateUserIdEnd(Long createUserIdEnd){ public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
} }
/** /**
* 获取 增加 创建用户 * 获取 增加 创建用户
* @return createUserIdIncrement * @return createUserIdIncrement
*/ */
public Long getCreateUserIdIncrement(){ public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement; return this.createUserIdIncrement;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public void setCreateUserIdIncrement(Long createUserIdIncrement){ public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdList * @return createUserIdList
*/ */
public List<Long> getCreateUserIdList(){ public List<Long> getCreateUserIdList(){
return this.createUserIdList; return this.createUserIdList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public void setCreateUserIdList(List<Long> createUserIdList){ public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdNotList * @return createUserIdNotList
*/ */
public List<Long> getCreateUserIdNotList(){ public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList; return this.createUserIdNotList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public void setCreateUserIdNotList(List<Long> createUserIdNotList){ public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
} }
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
*/ */
public String getCreateTimeStart(){ public String getCreateTimeStart(){
return this.createTimeStart; return this.createTimeStart;
} }
/** /**
* 设置 开始 创建时间 * 设置 开始 创建时间
* @param createTimeStart * @param createTimeStart
*/ */
public void setCreateTimeStart(String createTimeStart){ public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart; this.createTimeStart = createTimeStart;
} }
/** /**
* 获取 结束 创建时间 * 获取 结束 创建时间
* @return createTimeEnd * @return createTimeEnd
*/ */
public String getCreateTimeEnd(){ public String getCreateTimeEnd(){
return this.createTimeEnd; return this.createTimeEnd;
} }
/** /**
* 设置 结束 创建时间 * 设置 结束 创建时间
* @param createTimeEnd * @param createTimeEnd
*/ */
public void setCreateTimeEnd(String createTimeEnd){ public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd; this.createTimeEnd = createTimeEnd;
} }
/** /**
* 获取 开始 更新用户 * 获取 开始 更新用户
* @return updateUserIdStart * @return updateUserIdStart
*/ */
public Long getUpdateUserIdStart(){ public Long getUpdateUserIdStart(){
return this.updateUserIdStart; return this.updateUserIdStart;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public void setUpdateUserIdStart(Long updateUserIdStart){ public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
} }
/** /**
* 获取 结束 更新用户 * 获取 结束 更新用户
* @return $updateUserIdEnd * @return $updateUserIdEnd
*/ */
public Long getUpdateUserIdEnd(){ public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd; return this.updateUserIdEnd;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public void setUpdateUserIdEnd(Long updateUserIdEnd){ public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
} }
/** /**
* 获取 增加 更新用户 * 获取 增加 更新用户
* @return updateUserIdIncrement * @return updateUserIdIncrement
*/ */
public Long getUpdateUserIdIncrement(){ public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement; return this.updateUserIdIncrement;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){ public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdList * @return updateUserIdList
*/ */
public List<Long> getUpdateUserIdList(){ public List<Long> getUpdateUserIdList(){
return this.updateUserIdList; return this.updateUserIdList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public void setUpdateUserIdList(List<Long> updateUserIdList){ public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdNotList * @return updateUserIdNotList
*/ */
public List<Long> getUpdateUserIdNotList(){ public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList; return this.updateUserIdNotList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){ public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
} }
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
*/ */
public String getUpdateTimeStart(){ public String getUpdateTimeStart(){
return this.updateTimeStart; return this.updateTimeStart;
} }
/** /**
* 设置 开始 更新时间 * 设置 开始 更新时间
* @param updateTimeStart * @param updateTimeStart
*/ */
public void setUpdateTimeStart(String updateTimeStart){ public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart; this.updateTimeStart = updateTimeStart;
} }
/** /**
* 获取 结束 更新时间 * 获取 结束 更新时间
* @return updateTimeEnd * @return updateTimeEnd
*/ */
public String getUpdateTimeEnd(){ public String getUpdateTimeEnd(){
return this.updateTimeEnd; return this.updateTimeEnd;
} }
/** /**
* 设置 结束 更新时间 * 设置 结束 更新时间
* @param updateTimeEnd * @param updateTimeEnd
*/ */
public void setUpdateTimeEnd(String updateTimeEnd){ public void setUpdateTimeEnd(String updateTimeEnd){
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/** /**
* 设置 主键ID,主键,自增长 * 获取 背景图片
* @param id * @return backgroundList
*/ */
public List<String> getBackgroundList(){
return this.backgroundList;
}
/**
* 设置 背景图片
* @param backgroundList
*/
public void setBackgroundList(List<String> backgroundList){
this.backgroundList = backgroundList;
}
/**
* 获取 背景图片
* @return backgroundNotList
*/
public List<String> getBackgroundNotList(){
return this.backgroundNotList;
}
/**
* 设置 背景图片
* @param backgroundNotList
*/
public void setBackgroundNotList(List<String> backgroundNotList){
this.backgroundNotList = backgroundNotList;
}
/**
* 设置 主键ID,主键,自增长
* @param id
*/
public CompanyQuery id(Long id){ public CompanyQuery id(Long id){
setId(id); setId(id);
return this; return this;
} }
/** /**
* 设置 开始 主键ID,主键,自增长 * 设置 开始 主键ID,主键,自增长
* @param idStart * @param idStart
*/ */
public CompanyQuery idStart(Long idStart){ public CompanyQuery idStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
return this; return this;
} }
/** /**
* 设置 结束 主键ID,主键,自增长 * 设置 结束 主键ID,主键,自增长
* @param idEnd * @param idEnd
*/ */
public CompanyQuery idEnd(Long idEnd){ public CompanyQuery idEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 增加 主键ID,主键,自增长 * 设置 增加 主键ID,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public CompanyQuery idIncrement(Long idIncrement){ public CompanyQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
return this; return this;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idList * @param idList
*/ */
public CompanyQuery idList(List<Long> idList){ public CompanyQuery idList(List<Long> idList){
this.idList = idList; this.idList = idList;
return this; return this;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idNotList * @param idNotList
*/ */
public CompanyQuery idNotList(List<Long> idNotList){ public CompanyQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 公司名称 * 设置 公司名称
* @param companyName * @param companyName
*/ */
public CompanyQuery companyName(String companyName){ public CompanyQuery companyName(String companyName){
setCompanyName(companyName); setCompanyName(companyName);
return this; return this;
} }
/** /**
* 设置 公司名称 * 设置 公司名称
* @param companyNameList * @param companyNameList
*/ */
public CompanyQuery companyNameList(List<String> companyNameList){ public CompanyQuery companyNameList(List<String> companyNameList){
this.companyNameList = companyNameList; this.companyNameList = companyNameList;
return this; return this;
} }
/** /**
* 设置 公司编码 * 设置 公司编码
* @param companyCode * @param companyCode
*/ */
public CompanyQuery companyCode(String companyCode){ public CompanyQuery companyCode(String companyCode){
setCompanyCode(companyCode); setCompanyCode(companyCode);
return this; return this;
} }
/** /**
* 设置 公司编码 * 设置 公司编码
* @param companyCodeList * @param companyCodeList
*/ */
public CompanyQuery companyCodeList(List<String> companyCodeList){ public CompanyQuery companyCodeList(List<String> companyCodeList){
this.companyCodeList = companyCodeList; this.companyCodeList = companyCodeList;
return this; return this;
} }
/** /**
* 设置 注册号 * 设置 注册号
* @param registrationNumber * @param registrationNumber
*/ */
public CompanyQuery registrationNumber(String registrationNumber){ public CompanyQuery registrationNumber(String registrationNumber){
setRegistrationNumber(registrationNumber); setRegistrationNumber(registrationNumber);
return this; return this;
} }
/** /**
* 设置 注册号 * 设置 注册号
* @param registrationNumberList * @param registrationNumberList
*/ */
public CompanyQuery registrationNumberList(List<String> registrationNumberList){ public CompanyQuery registrationNumberList(List<String> registrationNumberList){
this.registrationNumberList = registrationNumberList; this.registrationNumberList = registrationNumberList;
return this; return this;
} }
/** /**
* 设置 法定代表人 * 设置 法定代表人
* @param legalRepresentative * @param legalRepresentative
*/ */
public CompanyQuery legalRepresentative(String legalRepresentative){ public CompanyQuery legalRepresentative(String legalRepresentative){
setLegalRepresentative(legalRepresentative); setLegalRepresentative(legalRepresentative);
return this; return this;
} }
/** /**
* 设置 法定代表人 * 设置 法定代表人
* @param legalRepresentativeList * @param legalRepresentativeList
*/ */
public CompanyQuery legalRepresentativeList(List<String> legalRepresentativeList){ public CompanyQuery legalRepresentativeList(List<String> legalRepresentativeList){
this.legalRepresentativeList = legalRepresentativeList; this.legalRepresentativeList = legalRepresentativeList;
return this; return this;
} }
/** /**
* 设置 注册资本 * 设置 注册资本
* @param registeredCapital * @param registeredCapital
*/ */
public CompanyQuery registeredCapital(String registeredCapital){ public CompanyQuery registeredCapital(String registeredCapital){
setRegisteredCapital(registeredCapital); setRegisteredCapital(registeredCapital);
return this; return this;
} }
/** /**
* 设置 注册资本 * 设置 注册资本
* @param registeredCapitalList * @param registeredCapitalList
*/ */
public CompanyQuery registeredCapitalList(List<String> registeredCapitalList){ public CompanyQuery registeredCapitalList(List<String> registeredCapitalList){
this.registeredCapitalList = registeredCapitalList; this.registeredCapitalList = registeredCapitalList;
return this; return this;
} }
/** /**
* 设置 公司类型 * 设置 公司类型
* @param companyType * @param companyType
*/ */
public CompanyQuery companyType(String companyType){ public CompanyQuery companyType(String companyType){
setCompanyType(companyType); setCompanyType(companyType);
return this; return this;
} }
/** /**
* 设置 公司类型 * 设置 公司类型
* @param companyTypeList * @param companyTypeList
*/ */
public CompanyQuery companyTypeList(List<String> companyTypeList){ public CompanyQuery companyTypeList(List<String> companyTypeList){
this.companyTypeList = companyTypeList; this.companyTypeList = companyTypeList;
return this; return this;
} }
/** /**
* 设置 经营范围 * 设置 经营范围
* @param businessScope * @param businessScope
*/ */
public CompanyQuery businessScope(String businessScope){ public CompanyQuery businessScope(String businessScope){
setBusinessScope(businessScope); setBusinessScope(businessScope);
return this; return this;
} }
/** /**
* 设置 经营范围 * 设置 经营范围
* @param businessScopeList * @param businessScopeList
*/ */
public CompanyQuery businessScopeList(List<String> businessScopeList){ public CompanyQuery businessScopeList(List<String> businessScopeList){
this.businessScopeList = businessScopeList; this.businessScopeList = businessScopeList;
return this; return this;
} }
/** /**
* 设置 经营地址 * 设置 经营地址
* @param businessAdress * @param businessAdress
*/ */
public CompanyQuery businessAdress(String businessAdress){ public CompanyQuery businessAdress(String businessAdress){
setBusinessAdress(businessAdress); setBusinessAdress(businessAdress);
return this; return this;
} }
/** /**
* 设置 经营地址 * 设置 经营地址
* @param businessAdressList * @param businessAdressList
*/ */
public CompanyQuery businessAdressList(List<String> businessAdressList){ public CompanyQuery businessAdressList(List<String> businessAdressList){
this.businessAdressList = businessAdressList; this.businessAdressList = businessAdressList;
return this; return this;
} }
/** /**
* 设置 所在地 * 设置 所在地
* @param location * @param location
*/ */
public CompanyQuery location(String location){ public CompanyQuery location(String location){
setLocation(location); setLocation(location);
return this; return this;
} }
/** /**
* 设置 所在地 * 设置 所在地
* @param locationList * @param locationList
*/ */
public CompanyQuery locationList(List<String> locationList){ public CompanyQuery locationList(List<String> locationList){
this.locationList = locationList; this.locationList = locationList;
return this; return this;
} }
/** /**
* 设置 所属区域编码 * 设置 所属区域编码
* @param areaCode * @param areaCode
*/ */
public CompanyQuery areaCode(String areaCode){ public CompanyQuery areaCode(String areaCode){
setAreaCode(areaCode); setAreaCode(areaCode);
return this; return this;
} }
/** /**
* 设置 所属区域编码 * 设置 所属区域编码
* @param areaCodeList * @param areaCodeList
*/ */
public CompanyQuery areaCodeList(List<String> areaCodeList){ public CompanyQuery areaCodeList(List<String> areaCodeList){
this.areaCodeList = areaCodeList; this.areaCodeList = areaCodeList;
return this; return this;
} }
/** /**
* 设置 所属区域名称 * 设置 所属区域名称
* @param areaName * @param areaName
*/ */
public CompanyQuery areaName(String areaName){ public CompanyQuery areaName(String areaName){
setAreaName(areaName); setAreaName(areaName);
return this; return this;
} }
/** /**
* 设置 所属区域名称 * 设置 所属区域名称
* @param areaNameList * @param areaNameList
*/ */
public CompanyQuery areaNameList(List<String> areaNameList){ public CompanyQuery areaNameList(List<String> areaNameList){
this.areaNameList = areaNameList; this.areaNameList = areaNameList;
return this; return this;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param contactPhone * @param contactPhone
*/ */
public CompanyQuery contactPhone(String contactPhone){ public CompanyQuery contactPhone(String contactPhone){
setContactPhone(contactPhone); setContactPhone(contactPhone);
return this; return this;
} }
/** /**
* 设置 联系电话 * 设置 联系电话
* @param contactPhoneList * @param contactPhoneList
*/ */
public CompanyQuery contactPhoneList(List<String> contactPhoneList){ public CompanyQuery contactPhoneList(List<String> contactPhoneList){
this.contactPhoneList = contactPhoneList; this.contactPhoneList = contactPhoneList;
return this; return this;
} }
/** /**
* 设置 电子邮件地址 * 设置 电子邮件地址
* @param email * @param email
*/ */
public CompanyQuery email(String email){ public CompanyQuery email(String email){
setEmail(email); setEmail(email);
return this; return this;
} }
/** /**
* 设置 电子邮件地址 * 设置 电子邮件地址
* @param emailList * @param emailList
*/ */
public CompanyQuery emailList(List<String> emailList){ public CompanyQuery emailList(List<String> emailList){
this.emailList = emailList; this.emailList = emailList;
return this; return this;
} }
/** /**
* 设置 公司网站 * 设置 公司网站
* @param website * @param website
*/ */
public CompanyQuery website(String website){ public CompanyQuery website(String website){
setWebsite(website); setWebsite(website);
return this; return this;
} }
/** /**
* 设置 公司网站 * 设置 公司网站
* @param websiteList * @param websiteList
*/ */
public CompanyQuery websiteList(List<String> websiteList){ public CompanyQuery websiteList(List<String> websiteList){
this.websiteList = websiteList; this.websiteList = websiteList;
return this; return this;
} }
/** /**
* 设置 税务登记号 * 设置 税务登记号
* @param taxRegistrationNumber * @param taxRegistrationNumber
*/ */
public CompanyQuery taxRegistrationNumber(String taxRegistrationNumber){ public CompanyQuery taxRegistrationNumber(String taxRegistrationNumber){
setTaxRegistrationNumber(taxRegistrationNumber); setTaxRegistrationNumber(taxRegistrationNumber);
return this; return this;
} }
/** /**
* 设置 税务登记号 * 设置 税务登记号
* @param taxRegistrationNumberList * @param taxRegistrationNumberList
*/ */
public CompanyQuery taxRegistrationNumberList(List<String> taxRegistrationNumberList){ public CompanyQuery taxRegistrationNumberList(List<String> taxRegistrationNumberList){
this.taxRegistrationNumberList = taxRegistrationNumberList; this.taxRegistrationNumberList = taxRegistrationNumberList;
return this; return this;
} }
/** /**
* 设置 社会信用代码 * 设置 社会信用代码
* @param socialCreditCode * @param socialCreditCode
*/ */
public CompanyQuery socialCreditCode(String socialCreditCode){ public CompanyQuery socialCreditCode(String socialCreditCode){
setSocialCreditCode(socialCreditCode); setSocialCreditCode(socialCreditCode);
return this; return this;
} }
/** /**
* 设置 社会信用代码 * 设置 社会信用代码
* @param socialCreditCodeList * @param socialCreditCodeList
*/ */
public CompanyQuery socialCreditCodeList(List<String> socialCreditCodeList){ public CompanyQuery socialCreditCodeList(List<String> socialCreditCodeList){
this.socialCreditCodeList = socialCreditCodeList; this.socialCreditCodeList = socialCreditCodeList;
return this; return this;
} }
/** /**
* 设置 商标信息 * 设置 商标信息
* @param trademarkInfo * @param trademarkInfo
*/ */
public CompanyQuery trademarkInfo(String trademarkInfo){ public CompanyQuery trademarkInfo(String trademarkInfo){
setTrademarkInfo(trademarkInfo); setTrademarkInfo(trademarkInfo);
return this; return this;
} }
/** /**
* 设置 商标信息 * 设置 商标信息
* @param trademarkInfoList * @param trademarkInfoList
*/ */
public CompanyQuery trademarkInfoList(List<String> trademarkInfoList){ public CompanyQuery trademarkInfoList(List<String> trademarkInfoList){
this.trademarkInfoList = trademarkInfoList; this.trademarkInfoList = trademarkInfoList;
return this; return this;
} }
/** /**
* 设置 网站历史备案信息 * 设置 网站历史备案信息
* @param websiteRegistrationInfo * @param websiteRegistrationInfo
*/ */
public CompanyQuery websiteRegistrationInfo(String websiteRegistrationInfo){ public CompanyQuery websiteRegistrationInfo(String websiteRegistrationInfo){
setWebsiteRegistrationInfo(websiteRegistrationInfo); setWebsiteRegistrationInfo(websiteRegistrationInfo);
return this; return this;
} }
/** /**
* 设置 网站历史备案信息 * 设置 网站历史备案信息
* @param websiteRegistrationInfoList * @param websiteRegistrationInfoList
*/ */
public CompanyQuery websiteRegistrationInfoList(List<String> websiteRegistrationInfoList){ public CompanyQuery websiteRegistrationInfoList(List<String> websiteRegistrationInfoList){
this.websiteRegistrationInfoList = websiteRegistrationInfoList; this.websiteRegistrationInfoList = websiteRegistrationInfoList;
return this; return this;
} }
/** /**
* 设置 员工总数 * 设置 员工总数
* @param totalEmployees * @param totalEmployees
*/ */
public CompanyQuery totalEmployees(Integer totalEmployees){ public CompanyQuery totalEmployees(Integer totalEmployees){
setTotalEmployees(totalEmployees); setTotalEmployees(totalEmployees);
return this; return this;
} }
/** /**
* 设置 开始 员工总数 * 设置 开始 员工总数
* @param totalEmployeesStart * @param totalEmployeesStart
*/ */
public CompanyQuery totalEmployeesStart(Integer totalEmployeesStart){ public CompanyQuery totalEmployeesStart(Integer totalEmployeesStart){
this.totalEmployeesStart = totalEmployeesStart; this.totalEmployeesStart = totalEmployeesStart;
return this; return this;
} }
/** /**
* 设置 结束 员工总数 * 设置 结束 员工总数
* @param totalEmployeesEnd * @param totalEmployeesEnd
*/ */
public CompanyQuery totalEmployeesEnd(Integer totalEmployeesEnd){ public CompanyQuery totalEmployeesEnd(Integer totalEmployeesEnd){
this.totalEmployeesEnd = totalEmployeesEnd; this.totalEmployeesEnd = totalEmployeesEnd;
return this; return this;
} }
/** /**
* 设置 增加 员工总数 * 设置 增加 员工总数
* @param totalEmployeesIncrement * @param totalEmployeesIncrement
*/ */
public CompanyQuery totalEmployeesIncrement(Integer totalEmployeesIncrement){ public CompanyQuery totalEmployeesIncrement(Integer totalEmployeesIncrement){
this.totalEmployeesIncrement = totalEmployeesIncrement; this.totalEmployeesIncrement = totalEmployeesIncrement;
return this; return this;
} }
/** /**
* 设置 员工总数 * 设置 员工总数
* @param totalEmployeesList * @param totalEmployeesList
*/ */
public CompanyQuery totalEmployeesList(List<Integer> totalEmployeesList){ public CompanyQuery totalEmployeesList(List<Integer> totalEmployeesList){
this.totalEmployeesList = totalEmployeesList; this.totalEmployeesList = totalEmployeesList;
return this; return this;
} }
/** /**
* 设置 员工总数 * 设置 员工总数
* @param totalEmployeesNotList * @param totalEmployeesNotList
*/ */
public CompanyQuery totalEmployeesNotList(List<Integer> totalEmployeesNotList){ public CompanyQuery totalEmployeesNotList(List<Integer> totalEmployeesNotList){
this.totalEmployeesNotList = totalEmployeesNotList; this.totalEmployeesNotList = totalEmployeesNotList;
return this; return this;
} }
/** /**
* 设置 软件著作权数量 * 设置 软件著作权数量
* @param softNum * @param softNum
*/ */
public CompanyQuery softNum(Integer softNum){ public CompanyQuery softNum(Integer softNum){
setSoftNum(softNum); setSoftNum(softNum);
return this; return this;
} }
/** /**
* 设置 开始 软件著作权数量 * 设置 开始 软件著作权数量
* @param softNumStart * @param softNumStart
*/ */
public CompanyQuery softNumStart(Integer softNumStart){ public CompanyQuery softNumStart(Integer softNumStart){
this.softNumStart = softNumStart; this.softNumStart = softNumStart;
return this; return this;
} }
/** /**
* 设置 结束 软件著作权数量 * 设置 结束 软件著作权数量
* @param softNumEnd * @param softNumEnd
*/ */
public CompanyQuery softNumEnd(Integer softNumEnd){ public CompanyQuery softNumEnd(Integer softNumEnd){
this.softNumEnd = softNumEnd; this.softNumEnd = softNumEnd;
return this; return this;
} }
/** /**
* 设置 增加 软件著作权数量 * 设置 增加 软件著作权数量
* @param softNumIncrement * @param softNumIncrement
*/ */
public CompanyQuery softNumIncrement(Integer softNumIncrement){ public CompanyQuery softNumIncrement(Integer softNumIncrement){
this.softNumIncrement = softNumIncrement; this.softNumIncrement = softNumIncrement;
return this; return this;
} }
/** /**
* 设置 软件著作权数量 * 设置 软件著作权数量
* @param softNumList * @param softNumList
*/ */
public CompanyQuery softNumList(List<Integer> softNumList){ public CompanyQuery softNumList(List<Integer> softNumList){
this.softNumList = softNumList; this.softNumList = softNumList;
return this; return this;
} }
/** /**
* 设置 软件著作权数量 * 设置 软件著作权数量
* @param softNumNotList * @param softNumNotList
*/ */
public CompanyQuery softNumNotList(List<Integer> softNumNotList){ public CompanyQuery softNumNotList(List<Integer> softNumNotList){
this.softNumNotList = softNumNotList; this.softNumNotList = softNumNotList;
return this; return this;
} }
/** /**
* 设置 专利数量 * 设置 专利数量
* @param patentNum * @param patentNum
*/ */
public CompanyQuery patentNum(Integer patentNum){ public CompanyQuery patentNum(Integer patentNum){
setPatentNum(patentNum); setPatentNum(patentNum);
return this; return this;
} }
/** /**
* 设置 开始 专利数量 * 设置 开始 专利数量
* @param patentNumStart * @param patentNumStart
*/ */
public CompanyQuery patentNumStart(Integer patentNumStart){ public CompanyQuery patentNumStart(Integer patentNumStart){
this.patentNumStart = patentNumStart; this.patentNumStart = patentNumStart;
return this; return this;
} }
/** /**
* 设置 结束 专利数量 * 设置 结束 专利数量
* @param patentNumEnd * @param patentNumEnd
*/ */
public CompanyQuery patentNumEnd(Integer patentNumEnd){ public CompanyQuery patentNumEnd(Integer patentNumEnd){
this.patentNumEnd = patentNumEnd; this.patentNumEnd = patentNumEnd;
return this; return this;
} }
/** /**
* 设置 增加 专利数量 * 设置 增加 专利数量
* @param patentNumIncrement * @param patentNumIncrement
*/ */
public CompanyQuery patentNumIncrement(Integer patentNumIncrement){ public CompanyQuery patentNumIncrement(Integer patentNumIncrement){
this.patentNumIncrement = patentNumIncrement; this.patentNumIncrement = patentNumIncrement;
return this; return this;
} }
/** /**
* 设置 专利数量 * 设置 专利数量
* @param patentNumList * @param patentNumList
*/ */
public CompanyQuery patentNumList(List<Integer> patentNumList){ public CompanyQuery patentNumList(List<Integer> patentNumList){
this.patentNumList = patentNumList; this.patentNumList = patentNumList;
return this; return this;
} }
/** /**
* 设置 专利数量 * 设置 专利数量
* @param patentNumNotList * @param patentNumNotList
*/ */
public CompanyQuery patentNumNotList(List<Integer> patentNumNotList){ public CompanyQuery patentNumNotList(List<Integer> patentNumNotList){
this.patentNumNotList = patentNumNotList; this.patentNumNotList = patentNumNotList;
return this; return this;
} }
/** /**
* 设置 历史发展 * 设置 历史发展
* @param hisDevelop * @param hisDevelop
*/ */
public CompanyQuery hisDevelop(String hisDevelop){ public CompanyQuery hisDevelop(String hisDevelop){
setHisDevelop(hisDevelop); setHisDevelop(hisDevelop);
return this; return this;
} }
/** /**
* 设置 历史发展 * 设置 历史发展
* @param hisDevelopList * @param hisDevelopList
*/ */
public CompanyQuery hisDevelopList(List<String> hisDevelopList){ public CompanyQuery hisDevelopList(List<String> hisDevelopList){
this.hisDevelopList = hisDevelopList; this.hisDevelopList = hisDevelopList;
return this; return this;
} }
/** /**
* 设置 经度 * 设置 经度
* @param lon * @param lon
*/ */
public CompanyQuery lon(String lon){ public CompanyQuery lon(String lon){
setLon(lon); setLon(lon);
return this; return this;
} }
/** /**
* 设置 经度 * 设置 经度
* @param lonList * @param lonList
*/ */
public CompanyQuery lonList(List<String> lonList){ public CompanyQuery lonList(List<String> lonList){
this.lonList = lonList; this.lonList = lonList;
return this; return this;
} }
/** /**
* 设置 纬度 * 设置 纬度
* @param lati * @param lati
*/ */
public CompanyQuery lati(String lati){ public CompanyQuery lati(String lati){
setLati(lati); setLati(lati);
return this; return this;
} }
/** /**
* 设置 纬度 * 设置 纬度
* @param latiList * @param latiList
*/ */
public CompanyQuery latiList(List<String> latiList){ public CompanyQuery latiList(List<String> latiList){
this.latiList = latiList; this.latiList = latiList;
return this; return this;
} }
/** /**
* 设置 企业logo * 设置 企业logo
* @param logoPath * @param logoPath
*/ */
public CompanyQuery logoPath(String logoPath){ public CompanyQuery logoPath(String logoPath){
setLogoPath(logoPath); setLogoPath(logoPath);
return this; return this;
} }
/** /**
* 设置 企业logo * 设置 企业logo
* @param logoPathList * @param logoPathList
*/ */
public CompanyQuery logoPathList(List<String> logoPathList){ public CompanyQuery logoPathList(List<String> logoPathList){
this.logoPathList = logoPathList; this.logoPathList = logoPathList;
return this; return this;
} }
/** /**
* 设置 企业视频 * 设置 企业视频
* @param companyVideoPath * @param companyVideoPath
*/ */
public CompanyQuery companyVideoPath(String companyVideoPath){ public CompanyQuery companyVideoPath(String companyVideoPath){
setCompanyVideoPath(companyVideoPath); setCompanyVideoPath(companyVideoPath);
return this; return this;
} }
/** /**
* 设置 企业视频 * 设置 企业视频
* @param companyVideoPathList * @param companyVideoPathList
*/ */
public CompanyQuery companyVideoPathList(List<String> companyVideoPathList){ public CompanyQuery companyVideoPathList(List<String> companyVideoPathList){
this.companyVideoPathList = companyVideoPathList; this.companyVideoPathList = companyVideoPathList;
return this; return this;
} }
/** /**
* 设置 企业宣传图片 * 设置 企业宣传图片
* @param companyPicPath * @param companyPicPath
*/ */
public CompanyQuery companyPicPath(String companyPicPath){ public CompanyQuery companyPicPath(String companyPicPath){
setCompanyPicPath(companyPicPath); setCompanyPicPath(companyPicPath);
return this; return this;
} }
/** /**
* 设置 企业宣传图片 * 设置 企业宣传图片
* @param companyPicPathList * @param companyPicPathList
*/ */
public CompanyQuery companyPicPathList(List<String> companyPicPathList){ public CompanyQuery companyPicPathList(List<String> companyPicPathList){
this.companyPicPathList = companyPicPathList; this.companyPicPathList = companyPicPathList;
return this; return this;
} }
/** /**
* 设置 公司介绍 * 设置 公司介绍
* @param companyIntroduction * @param companyIntroduction
*/ */
public CompanyQuery companyIntroduction(String companyIntroduction){ public CompanyQuery companyIntroduction(String companyIntroduction){
setCompanyIntroduction(companyIntroduction); setCompanyIntroduction(companyIntroduction);
return this; return this;
} }
/** /**
* 设置 公司介绍 * 设置 公司介绍
* @param companyIntroductionList * @param companyIntroductionList
*/ */
public CompanyQuery companyIntroductionList(List<String> companyIntroductionList){ public CompanyQuery companyIntroductionList(List<String> companyIntroductionList){
this.companyIntroductionList = companyIntroductionList; this.companyIntroductionList = companyIntroductionList;
return this; return this;
} }
/** /**
* 设置 公司文化 * 设置 公司文化
* @param companyCulture * @param companyCulture
*/ */
public CompanyQuery companyCulture(String companyCulture){ public CompanyQuery companyCulture(String companyCulture){
setCompanyCulture(companyCulture); setCompanyCulture(companyCulture);
return this; return this;
} }
/** /**
* 设置 公司文化 * 设置 公司文化
* @param companyCultureList * @param companyCultureList
*/ */
public CompanyQuery companyCultureList(List<String> companyCultureList){ public CompanyQuery companyCultureList(List<String> companyCultureList){
this.companyCultureList = companyCultureList; this.companyCultureList = companyCultureList;
return this; return this;
} }
/** /**
* 设置 排序 * 设置 排序
* @param sort * @param sort
*/ */
public CompanyQuery sort(Integer sort){ public CompanyQuery sort(Integer sort){
setSort(sort); setSort(sort);
return this; return this;
} }
/** /**
* 设置 开始 排序 * 设置 开始 排序
* @param sortStart * @param sortStart
*/ */
public CompanyQuery sortStart(Integer sortStart){ public CompanyQuery sortStart(Integer sortStart){
this.sortStart = sortStart; this.sortStart = sortStart;
return this; return this;
} }
/** /**
* 设置 结束 排序 * 设置 结束 排序
* @param sortEnd * @param sortEnd
*/ */
public CompanyQuery sortEnd(Integer sortEnd){ public CompanyQuery sortEnd(Integer sortEnd){
this.sortEnd = sortEnd; this.sortEnd = sortEnd;
return this; return this;
} }
/** /**
* 设置 增加 排序 * 设置 增加 排序
* @param sortIncrement * @param sortIncrement
*/ */
public CompanyQuery sortIncrement(Integer sortIncrement){ public CompanyQuery sortIncrement(Integer sortIncrement){
this.sortIncrement = sortIncrement; this.sortIncrement = sortIncrement;
return this; return this;
} }
/** /**
* 设置 排序 * 设置 排序
* @param sortList * @param sortList
*/ */
public CompanyQuery sortList(List<Integer> sortList){ public CompanyQuery sortList(List<Integer> sortList){
this.sortList = sortList; this.sortList = sortList;
return this; return this;
} }
/** /**
* 设置 排序 * 设置 排序
* @param sortNotList * @param sortNotList
*/ */
public CompanyQuery sortNotList(List<Integer> sortNotList){ public CompanyQuery sortNotList(List<Integer> sortNotList){
this.sortNotList = sortNotList; this.sortNotList = sortNotList;
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remark * @param remark
*/ */
public CompanyQuery remark(String remark){ public CompanyQuery remark(String remark){
setRemark(remark); setRemark(remark);
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkList * @param remarkList
*/ */
public CompanyQuery remarkList(List<String> remarkList){ public CompanyQuery remarkList(List<String> remarkList){
this.remarkList = remarkList; this.remarkList = remarkList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public CompanyQuery createUserId(Long createUserId){ public CompanyQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public CompanyQuery createUserIdStart(Long createUserIdStart){ public CompanyQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public CompanyQuery createUserIdEnd(Long createUserIdEnd){ public CompanyQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public CompanyQuery createUserIdIncrement(Long createUserIdIncrement){ public CompanyQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public CompanyQuery createUserIdList(List<Long> createUserIdList){ public CompanyQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public CompanyQuery createUserIdNotList(List<Long> createUserIdNotList){ public CompanyQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public CompanyQuery updateUserId(Long updateUserId){ public CompanyQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public CompanyQuery updateUserIdStart(Long updateUserIdStart){ public CompanyQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public CompanyQuery updateUserIdEnd(Long updateUserIdEnd){ public CompanyQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public CompanyQuery updateUserIdIncrement(Long updateUserIdIncrement){ public CompanyQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public CompanyQuery updateUserIdList(List<Long> updateUserIdList){ public CompanyQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public CompanyQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public CompanyQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 背景图片
* @param background
*/
public CompanyQuery background(String background){
setBackground(background);
return this;
}
/**
* 设置 背景图片
* @param backgroundList
*/
public CompanyQuery backgroundList(List<String> backgroundList){
this.backgroundList = backgroundList;
return this;
}
/** /**
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList * @return orConditionList
*/ */
public List<CompanyQuery> getOrConditionList(){ public List<CompanyQuery> getOrConditionList(){
return this.orConditionList; return this.orConditionList;
} }
/** /**
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) * 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList * @param orConditionList
*/ */
public void setOrConditionList(List<CompanyQuery> orConditionList){ public void setOrConditionList(List<CompanyQuery> orConditionList){
this.orConditionList = orConditionList; this.orConditionList = orConditionList;
} }
/** /**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) * 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList * @return andConditionList
*/ */
public List<CompanyQuery> getAndConditionList(){ public List<CompanyQuery> getAndConditionList(){
return this.andConditionList; return this.andConditionList;
} }
/** /**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) * 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList * @param andConditionList
*/ */
public void setAndConditionList(List<CompanyQuery> andConditionList){ public void setAndConditionList(List<CompanyQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment