Commit 1e23e744 authored by 赵啸非's avatar 赵啸非

添加目录字段

parent 90ce17c4
...@@ -31,9 +31,14 @@ CREATE TABLE `mortals_xhx_child_license` ( ...@@ -31,9 +31,14 @@ CREATE TABLE `mortals_xhx_child_license` (
`formContent` mediumtext COMMENT '提交的表单', `formContent` mediumtext COMMENT '提交的表单',
`processStatus` tinyint(2) DEFAULT '0' COMMENT '处理状态(0.未处理,1.已处理)', `processStatus` tinyint(2) DEFAULT '0' COMMENT '处理状态(0.未处理,1.已处理)',
`remark` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注', `remark` varchar(2048) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`reportUserId` bigint(20) DEFAULT NULL COMMENT '联报用户',
`reportUserName` varchar(64) DEFAULT NULL COMMENT '联报用户名称',
`reportTime` datetime DEFAULT NULL COMMENT '联报时间',
`createTime` datetime(0) NOT NULL COMMENT '创建时间', `createTime` datetime(0) NOT NULL COMMENT '创建时间',
`createUserId` bigint(20) NOT NULL COMMENT '创建用户', `createUserId` bigint(20) NOT NULL COMMENT '创建用户',
`createUserName` varchar(64) DEFAULT NULL COMMENT '创建用户名称',
`updateUserId` bigint(20) DEFAULT NULL COMMENT '更新用户', `updateUserId` bigint(20) DEFAULT NULL COMMENT '更新用户',
`updateUserName` varchar(64) DEFAULT NULL COMMENT '更新用户名称',
`updateTime` datetime DEFAULT NULL COMMENT '更新时间', `updateTime` datetime DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE, PRIMARY KEY (`id`) USING BTREE,
KEY `siteId` (`siteId`) USING BTREE, KEY `siteId` (`siteId`) USING BTREE,
......
...@@ -11,126 +11,146 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -11,126 +11,146 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.child.model.vo.ChildLicenseVo; import com.mortals.xhx.module.child.model.vo.ChildLicenseVo;
import lombok.Data; import lombok.Data;
/** /**
* 行业许可子证实体对象 * 行业许可子证实体对象
* *
* @author zxfei * @author zxfei
* @date 2024-07-28 * @date 2024-07-28
*/ */
@Data @Data
public class ChildLicenseEntity extends ChildLicenseVo { public class ChildLicenseEntity extends ChildLicenseVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点Id * 站点Id
*/ */
private Long siteId; private Long siteId;
/** /**
* 站点名称 * 站点名称
*/ */
private String siteName; private String siteName;
/** /**
* 目录id * 目录id
*/ */
private Long catalogId; private Long catalogId;
/** /**
* 目录名称 * 目录名称
*/ */
private String catalogName; private String catalogName;
/** /**
* 申请Id * 申请Id
*/ */
private Long applyId; private Long applyId;
/** /**
* 子证配置Id * 子证配置Id
*/ */
private Long documentId; private Long documentId;
/** /**
* 子证名称 * 子证名称
*/ */
private String documentName; private String documentName;
/** /**
* 部门id * 部门id
*/ */
private Long deptId; private Long deptId;
/** /**
* 部门名称 * 部门名称
*/ */
private String deptName; private String deptName;
/** /**
* 市场主体名称 * 市场主体名称
*/ */
private String marketEntityName; private String marketEntityName;
/** /**
* 许可证编号 * 许可证编号
*/ */
private String licenseCode; private String licenseCode;
/** /**
* 法定代表人(负责人) * 法定代表人(负责人)
*/ */
private String legalPersonName; private String legalPersonName;
/** /**
* 统一社会信用代码 * 统一社会信用代码
*/ */
private String creditCode; private String creditCode;
/** /**
* 制证日期 * 制证日期
*/ */
private Date productLicenseTime; private Date productLicenseTime;
/** /**
* 证件二维码 * 证件二维码
*/ */
private String certQRCode; private String certQRCode;
/** /**
* 制证机关 * 制证机关
*/ */
private String certAuthority; private String certAuthority;
/** /**
* 经营场所 * 经营场所
*/ */
private String businessPlace; private String businessPlace;
/** /**
* 许可项目 * 许可项目
*/ */
private String licensedItems; private String licensedItems;
/** /**
* 正本文件名称 * 正本文件名称
*/ */
private String originalFileName; private String originalFileName;
/** /**
* 正本文件相对路径地址 * 正本文件相对路径地址
*/ */
private String originalFilePath; private String originalFilePath;
/** /**
* 副本文件名称 * 副本文件名称
*/ */
private String copyFileName; private String copyFileName;
/** /**
* 副本文件相对路径地址 * 副本文件相对路径地址
*/ */
private String copyFilePath; private String copyFilePath;
/** /**
* 简介 * 简介
*/ */
private String summary; private String summary;
/** /**
* 动态表单样式 * 动态表单样式
*/ */
private String formStyleContent; private String formStyleContent;
/** /**
* 提交的表单 * 提交的表单
*/ */
private String formContent; private String formContent;
/** /**
* 处理状态(0.未处理,1.已处理) * 处理状态(0.未处理,1.已处理)
*/ */
private Integer processStatus; private Integer processStatus;
/** /**
* 备注 * 备注
*/ */
private String remark; private String remark;
/**
* 联报用户
*/
private Long reportUserId;
/**
* 联报用户名称
*/
private String reportUserName;
/**
* 联报时间
*/
private Date reportTime;
/**
* 创建用户名称
*/
private String createUserName;
/**
* 更新用户名称
*/
private String updateUserName;
@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) {
...@@ -138,39 +158,44 @@ public class ChildLicenseEntity extends ChildLicenseVo { ...@@ -138,39 +158,44 @@ public class ChildLicenseEntity extends ChildLicenseVo {
if (obj instanceof ChildLicenseEntity) { if (obj instanceof ChildLicenseEntity) {
ChildLicenseEntity tmp = (ChildLicenseEntity) obj; ChildLicenseEntity tmp = (ChildLicenseEntity) 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.siteId = null; this.siteId = null;
this.siteName = ""; this.siteName = "";
this.catalogId = null; this.catalogId = null;
this.catalogName = ""; this.catalogName = "";
this.applyId = null; this.applyId = null;
this.documentId = null; this.documentId = null;
this.documentName = ""; this.documentName = "";
this.deptId = null; this.deptId = null;
this.deptName = ""; this.deptName = "";
this.marketEntityName = ""; this.marketEntityName = "";
this.licenseCode = ""; this.licenseCode = "";
this.legalPersonName = ""; this.legalPersonName = "";
this.creditCode = ""; this.creditCode = "";
this.productLicenseTime = null; this.productLicenseTime = null;
this.certQRCode = ""; this.certQRCode = "";
this.certAuthority = ""; this.certAuthority = "";
this.businessPlace = ""; this.businessPlace = "";
this.licensedItems = ""; this.licensedItems = "";
this.originalFileName = ""; this.originalFileName = "";
this.originalFilePath = ""; this.originalFilePath = "";
this.copyFileName = ""; this.copyFileName = "";
this.copyFilePath = ""; this.copyFilePath = "";
this.summary = ""; this.summary = "";
this.formStyleContent = ""; this.formStyleContent = "";
this.formContent = ""; this.formContent = "";
this.processStatus = 0; this.processStatus = 0;
this.remark = ""; this.remark = "";
this.reportUserId = null;
this.reportUserName = "";
this.reportTime = null;
this.createUserName = "";
this.updateUserName = "";
} }
} }
\ No newline at end of file
...@@ -4,11 +4,11 @@ import java.util.Date; ...@@ -4,11 +4,11 @@ import java.util.Date;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.child.model.ChildLicenseEntity; import com.mortals.xhx.module.child.model.ChildLicenseEntity;
/** /**
* 行业许可子证查询对象 * 行业许可子证查询对象
* *
* @author zxfei * @author zxfei
* @date 2024-07-28 * @date 2024-07-28
*/ */
public class ChildLicenseQuery extends ChildLicenseEntity { public class ChildLicenseQuery extends ChildLicenseEntity {
/** 开始 主键ID,主键,自增长 */ /** 开始 主键ID,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -263,6 +263,42 @@ public class ChildLicenseQuery extends ChildLicenseEntity { ...@@ -263,6 +263,42 @@ public class ChildLicenseQuery extends ChildLicenseEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 开始 联报用户 */
private Long reportUserIdStart;
/** 结束 联报用户 */
private Long reportUserIdEnd;
/** 增加 联报用户 */
private Long reportUserIdIncrement;
/** 联报用户列表 */
private List <Long> reportUserIdList;
/** 联报用户排除列表 */
private List <Long> reportUserIdNotList;
/** 联报用户名称 */
private List<String> reportUserNameList;
/** 联报用户名称排除列表 */
private List <String> reportUserNameNotList;
/** 开始 联报时间 */
private String reportTimeStart;
/** 结束 联报时间 */
private String reportTimeEnd;
/** 创建用户名称 */
private List<String> createUserNameList;
/** 创建用户名称排除列表 */
private List <String> createUserNameNotList;
/** 更新用户名称 */
private List<String> updateUserNameList;
/** 更新用户名称排除列表 */
private List <String> updateUserNameNotList;
/** 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<ChildLicenseQuery> orConditionList; private List<ChildLicenseQuery> orConditionList;
...@@ -272,2367 +308,2688 @@ public class ChildLicenseQuery extends ChildLicenseEntity { ...@@ -272,2367 +308,2688 @@ public class ChildLicenseQuery extends ChildLicenseEntity {
public ChildLicenseQuery(){} public ChildLicenseQuery(){}
/** /**
* 获取 开始 主键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;
} }
/** /**
* 获取 开始 站点Id * 获取 开始 站点Id
* @return siteIdStart * @return siteIdStart
*/ */
public Long getSiteIdStart(){ public Long getSiteIdStart(){
return this.siteIdStart; return this.siteIdStart;
} }
/** /**
* 设置 开始 站点Id * 设置 开始 站点Id
* @param siteIdStart * @param siteIdStart
*/ */
public void setSiteIdStart(Long siteIdStart){ public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
} }
/** /**
* 获取 结束 站点Id * 获取 结束 站点Id
* @return $siteIdEnd * @return $siteIdEnd
*/ */
public Long getSiteIdEnd(){ public Long getSiteIdEnd(){
return this.siteIdEnd; return this.siteIdEnd;
} }
/** /**
* 设置 结束 站点Id * 设置 结束 站点Id
* @param siteIdEnd * @param siteIdEnd
*/ */
public void setSiteIdEnd(Long siteIdEnd){ public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
} }
/** /**
* 获取 增加 站点Id * 获取 增加 站点Id
* @return siteIdIncrement * @return siteIdIncrement
*/ */
public Long getSiteIdIncrement(){ public Long getSiteIdIncrement(){
return this.siteIdIncrement; return this.siteIdIncrement;
} }
/** /**
* 设置 增加 站点Id * 设置 增加 站点Id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public void setSiteIdIncrement(Long siteIdIncrement){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
} }
/** /**
* 获取 站点Id * 获取 站点Id
* @return siteIdList * @return siteIdList
*/ */
public List<Long> getSiteIdList(){ public List<Long> getSiteIdList(){
return this.siteIdList; return this.siteIdList;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdList * @param siteIdList
*/ */
public void setSiteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
} }
/** /**
* 获取 站点Id * 获取 站点Id
* @return siteIdNotList * @return siteIdNotList
*/ */
public List<Long> getSiteIdNotList(){ public List<Long> getSiteIdNotList(){
return this.siteIdNotList; return this.siteIdNotList;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdNotList * @param siteIdNotList
*/ */
public void setSiteIdNotList(List<Long> siteIdNotList){ public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameList * @return siteNameList
*/ */
public List<String> getSiteNameList(){ public List<String> getSiteNameList(){
return this.siteNameList; return this.siteNameList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public void setSiteNameList(List<String> siteNameList){ public void setSiteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameNotList * @return siteNameNotList
*/ */
public List<String> getSiteNameNotList(){ public List<String> getSiteNameNotList(){
return this.siteNameNotList; return this.siteNameNotList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameNotList * @param siteNameNotList
*/ */
public void setSiteNameNotList(List<String> siteNameNotList){ public void setSiteNameNotList(List<String> siteNameNotList){
this.siteNameNotList = siteNameNotList; this.siteNameNotList = siteNameNotList;
} }
/** /**
* 获取 开始 目录id * 获取 开始 目录id
* @return catalogIdStart * @return catalogIdStart
*/ */
public Long getCatalogIdStart(){ public Long getCatalogIdStart(){
return this.catalogIdStart; return this.catalogIdStart;
} }
/** /**
* 设置 开始 目录id * 设置 开始 目录id
* @param catalogIdStart * @param catalogIdStart
*/ */
public void setCatalogIdStart(Long catalogIdStart){ public void setCatalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart; this.catalogIdStart = catalogIdStart;
} }
/** /**
* 获取 结束 目录id * 获取 结束 目录id
* @return $catalogIdEnd * @return $catalogIdEnd
*/ */
public Long getCatalogIdEnd(){ public Long getCatalogIdEnd(){
return this.catalogIdEnd; return this.catalogIdEnd;
} }
/** /**
* 设置 结束 目录id * 设置 结束 目录id
* @param catalogIdEnd * @param catalogIdEnd
*/ */
public void setCatalogIdEnd(Long catalogIdEnd){ public void setCatalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd; this.catalogIdEnd = catalogIdEnd;
} }
/** /**
* 获取 增加 目录id * 获取 增加 目录id
* @return catalogIdIncrement * @return catalogIdIncrement
*/ */
public Long getCatalogIdIncrement(){ public Long getCatalogIdIncrement(){
return this.catalogIdIncrement; return this.catalogIdIncrement;
} }
/** /**
* 设置 增加 目录id * 设置 增加 目录id
* @param catalogIdIncrement * @param catalogIdIncrement
*/ */
public void setCatalogIdIncrement(Long catalogIdIncrement){ public void setCatalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement; this.catalogIdIncrement = catalogIdIncrement;
} }
/** /**
* 获取 目录id * 获取 目录id
* @return catalogIdList * @return catalogIdList
*/ */
public List<Long> getCatalogIdList(){ public List<Long> getCatalogIdList(){
return this.catalogIdList; return this.catalogIdList;
} }
/** /**
* 设置 目录id * 设置 目录id
* @param catalogIdList * @param catalogIdList
*/ */
public void setCatalogIdList(List<Long> catalogIdList){ public void setCatalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList; this.catalogIdList = catalogIdList;
} }
/** /**
* 获取 目录id * 获取 目录id
* @return catalogIdNotList * @return catalogIdNotList
*/ */
public List<Long> getCatalogIdNotList(){ public List<Long> getCatalogIdNotList(){
return this.catalogIdNotList; return this.catalogIdNotList;
} }
/** /**
* 设置 目录id * 设置 目录id
* @param catalogIdNotList * @param catalogIdNotList
*/ */
public void setCatalogIdNotList(List<Long> catalogIdNotList){ public void setCatalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList; this.catalogIdNotList = catalogIdNotList;
} }
/** /**
* 获取 目录名称 * 获取 目录名称
* @return catalogNameList * @return catalogNameList
*/ */
public List<String> getCatalogNameList(){ public List<String> getCatalogNameList(){
return this.catalogNameList; return this.catalogNameList;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogNameList * @param catalogNameList
*/ */
public void setCatalogNameList(List<String> catalogNameList){ public void setCatalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList; this.catalogNameList = catalogNameList;
} }
/** /**
* 获取 目录名称 * 获取 目录名称
* @return catalogNameNotList * @return catalogNameNotList
*/ */
public List<String> getCatalogNameNotList(){ public List<String> getCatalogNameNotList(){
return this.catalogNameNotList; return this.catalogNameNotList;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogNameNotList * @param catalogNameNotList
*/ */
public void setCatalogNameNotList(List<String> catalogNameNotList){ public void setCatalogNameNotList(List<String> catalogNameNotList){
this.catalogNameNotList = catalogNameNotList; this.catalogNameNotList = catalogNameNotList;
} }
/** /**
* 获取 开始 申请Id * 获取 开始 申请Id
* @return applyIdStart * @return applyIdStart
*/ */
public Long getApplyIdStart(){ public Long getApplyIdStart(){
return this.applyIdStart; return this.applyIdStart;
} }
/** /**
* 设置 开始 申请Id * 设置 开始 申请Id
* @param applyIdStart * @param applyIdStart
*/ */
public void setApplyIdStart(Long applyIdStart){ public void setApplyIdStart(Long applyIdStart){
this.applyIdStart = applyIdStart; this.applyIdStart = applyIdStart;
} }
/** /**
* 获取 结束 申请Id * 获取 结束 申请Id
* @return $applyIdEnd * @return $applyIdEnd
*/ */
public Long getApplyIdEnd(){ public Long getApplyIdEnd(){
return this.applyIdEnd; return this.applyIdEnd;
} }
/** /**
* 设置 结束 申请Id * 设置 结束 申请Id
* @param applyIdEnd * @param applyIdEnd
*/ */
public void setApplyIdEnd(Long applyIdEnd){ public void setApplyIdEnd(Long applyIdEnd){
this.applyIdEnd = applyIdEnd; this.applyIdEnd = applyIdEnd;
} }
/** /**
* 获取 增加 申请Id * 获取 增加 申请Id
* @return applyIdIncrement * @return applyIdIncrement
*/ */
public Long getApplyIdIncrement(){ public Long getApplyIdIncrement(){
return this.applyIdIncrement; return this.applyIdIncrement;
} }
/** /**
* 设置 增加 申请Id * 设置 增加 申请Id
* @param applyIdIncrement * @param applyIdIncrement
*/ */
public void setApplyIdIncrement(Long applyIdIncrement){ public void setApplyIdIncrement(Long applyIdIncrement){
this.applyIdIncrement = applyIdIncrement; this.applyIdIncrement = applyIdIncrement;
} }
/** /**
* 获取 申请Id * 获取 申请Id
* @return applyIdList * @return applyIdList
*/ */
public List<Long> getApplyIdList(){ public List<Long> getApplyIdList(){
return this.applyIdList; return this.applyIdList;
} }
/** /**
* 设置 申请Id * 设置 申请Id
* @param applyIdList * @param applyIdList
*/ */
public void setApplyIdList(List<Long> applyIdList){ public void setApplyIdList(List<Long> applyIdList){
this.applyIdList = applyIdList; this.applyIdList = applyIdList;
} }
/** /**
* 获取 申请Id * 获取 申请Id
* @return applyIdNotList * @return applyIdNotList
*/ */
public List<Long> getApplyIdNotList(){ public List<Long> getApplyIdNotList(){
return this.applyIdNotList; return this.applyIdNotList;
} }
/** /**
* 设置 申请Id * 设置 申请Id
* @param applyIdNotList * @param applyIdNotList
*/ */
public void setApplyIdNotList(List<Long> applyIdNotList){ public void setApplyIdNotList(List<Long> applyIdNotList){
this.applyIdNotList = applyIdNotList; this.applyIdNotList = applyIdNotList;
} }
/** /**
* 获取 开始 子证配置Id * 获取 开始 子证配置Id
* @return documentIdStart * @return documentIdStart
*/ */
public Long getDocumentIdStart(){ public Long getDocumentIdStart(){
return this.documentIdStart; return this.documentIdStart;
} }
/** /**
* 设置 开始 子证配置Id * 设置 开始 子证配置Id
* @param documentIdStart * @param documentIdStart
*/ */
public void setDocumentIdStart(Long documentIdStart){ public void setDocumentIdStart(Long documentIdStart){
this.documentIdStart = documentIdStart; this.documentIdStart = documentIdStart;
} }
/** /**
* 获取 结束 子证配置Id * 获取 结束 子证配置Id
* @return $documentIdEnd * @return $documentIdEnd
*/ */
public Long getDocumentIdEnd(){ public Long getDocumentIdEnd(){
return this.documentIdEnd; return this.documentIdEnd;
} }
/** /**
* 设置 结束 子证配置Id * 设置 结束 子证配置Id
* @param documentIdEnd * @param documentIdEnd
*/ */
public void setDocumentIdEnd(Long documentIdEnd){ public void setDocumentIdEnd(Long documentIdEnd){
this.documentIdEnd = documentIdEnd; this.documentIdEnd = documentIdEnd;
} }
/** /**
* 获取 增加 子证配置Id * 获取 增加 子证配置Id
* @return documentIdIncrement * @return documentIdIncrement
*/ */
public Long getDocumentIdIncrement(){ public Long getDocumentIdIncrement(){
return this.documentIdIncrement; return this.documentIdIncrement;
} }
/** /**
* 设置 增加 子证配置Id * 设置 增加 子证配置Id
* @param documentIdIncrement * @param documentIdIncrement
*/ */
public void setDocumentIdIncrement(Long documentIdIncrement){ public void setDocumentIdIncrement(Long documentIdIncrement){
this.documentIdIncrement = documentIdIncrement; this.documentIdIncrement = documentIdIncrement;
} }
/** /**
* 获取 子证配置Id * 获取 子证配置Id
* @return documentIdList * @return documentIdList
*/ */
public List<Long> getDocumentIdList(){ public List<Long> getDocumentIdList(){
return this.documentIdList; return this.documentIdList;
} }
/** /**
* 设置 子证配置Id * 设置 子证配置Id
* @param documentIdList * @param documentIdList
*/ */
public void setDocumentIdList(List<Long> documentIdList){ public void setDocumentIdList(List<Long> documentIdList){
this.documentIdList = documentIdList; this.documentIdList = documentIdList;
} }
/** /**
* 获取 子证配置Id * 获取 子证配置Id
* @return documentIdNotList * @return documentIdNotList
*/ */
public List<Long> getDocumentIdNotList(){ public List<Long> getDocumentIdNotList(){
return this.documentIdNotList; return this.documentIdNotList;
} }
/** /**
* 设置 子证配置Id * 设置 子证配置Id
* @param documentIdNotList * @param documentIdNotList
*/ */
public void setDocumentIdNotList(List<Long> documentIdNotList){ public void setDocumentIdNotList(List<Long> documentIdNotList){
this.documentIdNotList = documentIdNotList; this.documentIdNotList = documentIdNotList;
} }
/** /**
* 获取 子证名称 * 获取 子证名称
* @return documentNameList * @return documentNameList
*/ */
public List<String> getDocumentNameList(){ public List<String> getDocumentNameList(){
return this.documentNameList; return this.documentNameList;
} }
/** /**
* 设置 子证名称 * 设置 子证名称
* @param documentNameList * @param documentNameList
*/ */
public void setDocumentNameList(List<String> documentNameList){ public void setDocumentNameList(List<String> documentNameList){
this.documentNameList = documentNameList; this.documentNameList = documentNameList;
} }
/** /**
* 获取 子证名称 * 获取 子证名称
* @return documentNameNotList * @return documentNameNotList
*/ */
public List<String> getDocumentNameNotList(){ public List<String> getDocumentNameNotList(){
return this.documentNameNotList; return this.documentNameNotList;
} }
/** /**
* 设置 子证名称 * 设置 子证名称
* @param documentNameNotList * @param documentNameNotList
*/ */
public void setDocumentNameNotList(List<String> documentNameNotList){ public void setDocumentNameNotList(List<String> documentNameNotList){
this.documentNameNotList = documentNameNotList; this.documentNameNotList = documentNameNotList;
} }
/** /**
* 获取 开始 部门id * 获取 开始 部门id
* @return deptIdStart * @return deptIdStart
*/ */
public Long getDeptIdStart(){ public Long getDeptIdStart(){
return this.deptIdStart; return this.deptIdStart;
} }
/** /**
* 设置 开始 部门id * 设置 开始 部门id
* @param deptIdStart * @param deptIdStart
*/ */
public void setDeptIdStart(Long deptIdStart){ public void setDeptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart; this.deptIdStart = deptIdStart;
} }
/** /**
* 获取 结束 部门id * 获取 结束 部门id
* @return $deptIdEnd * @return $deptIdEnd
*/ */
public Long getDeptIdEnd(){ public Long getDeptIdEnd(){
return this.deptIdEnd; return this.deptIdEnd;
} }
/** /**
* 设置 结束 部门id * 设置 结束 部门id
* @param deptIdEnd * @param deptIdEnd
*/ */
public void setDeptIdEnd(Long deptIdEnd){ public void setDeptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd; this.deptIdEnd = deptIdEnd;
} }
/** /**
* 获取 增加 部门id * 获取 增加 部门id
* @return deptIdIncrement * @return deptIdIncrement
*/ */
public Long getDeptIdIncrement(){ public Long getDeptIdIncrement(){
return this.deptIdIncrement; return this.deptIdIncrement;
} }
/** /**
* 设置 增加 部门id * 设置 增加 部门id
* @param deptIdIncrement * @param deptIdIncrement
*/ */
public void setDeptIdIncrement(Long deptIdIncrement){ public void setDeptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement; this.deptIdIncrement = deptIdIncrement;
} }
/** /**
* 获取 部门id * 获取 部门id
* @return deptIdList * @return deptIdList
*/ */
public List<Long> getDeptIdList(){ public List<Long> getDeptIdList(){
return this.deptIdList; return this.deptIdList;
} }
/** /**
* 设置 部门id * 设置 部门id
* @param deptIdList * @param deptIdList
*/ */
public void setDeptIdList(List<Long> deptIdList){ public void setDeptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList; this.deptIdList = deptIdList;
} }
/** /**
* 获取 部门id * 获取 部门id
* @return deptIdNotList * @return deptIdNotList
*/ */
public List<Long> getDeptIdNotList(){ public List<Long> getDeptIdNotList(){
return this.deptIdNotList; return this.deptIdNotList;
} }
/** /**
* 设置 部门id * 设置 部门id
* @param deptIdNotList * @param deptIdNotList
*/ */
public void setDeptIdNotList(List<Long> deptIdNotList){ public void setDeptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList; this.deptIdNotList = deptIdNotList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return deptNameList * @return deptNameList
*/ */
public List<String> getDeptNameList(){ public List<String> getDeptNameList(){
return this.deptNameList; return this.deptNameList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameList * @param deptNameList
*/ */
public void setDeptNameList(List<String> deptNameList){ public void setDeptNameList(List<String> deptNameList){
this.deptNameList = deptNameList; this.deptNameList = deptNameList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return deptNameNotList * @return deptNameNotList
*/ */
public List<String> getDeptNameNotList(){ public List<String> getDeptNameNotList(){
return this.deptNameNotList; return this.deptNameNotList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameNotList * @param deptNameNotList
*/ */
public void setDeptNameNotList(List<String> deptNameNotList){ public void setDeptNameNotList(List<String> deptNameNotList){
this.deptNameNotList = deptNameNotList; this.deptNameNotList = deptNameNotList;
} }
/** /**
* 获取 市场主体名称 * 获取 市场主体名称
* @return marketEntityNameList * @return marketEntityNameList
*/ */
public List<String> getMarketEntityNameList(){ public List<String> getMarketEntityNameList(){
return this.marketEntityNameList; return this.marketEntityNameList;
} }
/** /**
* 设置 市场主体名称 * 设置 市场主体名称
* @param marketEntityNameList * @param marketEntityNameList
*/ */
public void setMarketEntityNameList(List<String> marketEntityNameList){ public void setMarketEntityNameList(List<String> marketEntityNameList){
this.marketEntityNameList = marketEntityNameList; this.marketEntityNameList = marketEntityNameList;
} }
/** /**
* 获取 市场主体名称 * 获取 市场主体名称
* @return marketEntityNameNotList * @return marketEntityNameNotList
*/ */
public List<String> getMarketEntityNameNotList(){ public List<String> getMarketEntityNameNotList(){
return this.marketEntityNameNotList; return this.marketEntityNameNotList;
} }
/** /**
* 设置 市场主体名称 * 设置 市场主体名称
* @param marketEntityNameNotList * @param marketEntityNameNotList
*/ */
public void setMarketEntityNameNotList(List<String> marketEntityNameNotList){ public void setMarketEntityNameNotList(List<String> marketEntityNameNotList){
this.marketEntityNameNotList = marketEntityNameNotList; this.marketEntityNameNotList = marketEntityNameNotList;
} }
/** /**
* 获取 许可证编号 * 获取 许可证编号
* @return licenseCodeList * @return licenseCodeList
*/ */
public List<String> getLicenseCodeList(){ public List<String> getLicenseCodeList(){
return this.licenseCodeList; return this.licenseCodeList;
} }
/** /**
* 设置 许可证编号 * 设置 许可证编号
* @param licenseCodeList * @param licenseCodeList
*/ */
public void setLicenseCodeList(List<String> licenseCodeList){ public void setLicenseCodeList(List<String> licenseCodeList){
this.licenseCodeList = licenseCodeList; this.licenseCodeList = licenseCodeList;
} }
/** /**
* 获取 许可证编号 * 获取 许可证编号
* @return licenseCodeNotList * @return licenseCodeNotList
*/ */
public List<String> getLicenseCodeNotList(){ public List<String> getLicenseCodeNotList(){
return this.licenseCodeNotList; return this.licenseCodeNotList;
} }
/** /**
* 设置 许可证编号 * 设置 许可证编号
* @param licenseCodeNotList * @param licenseCodeNotList
*/ */
public void setLicenseCodeNotList(List<String> licenseCodeNotList){ public void setLicenseCodeNotList(List<String> licenseCodeNotList){
this.licenseCodeNotList = licenseCodeNotList; this.licenseCodeNotList = licenseCodeNotList;
} }
/** /**
* 获取 法定代表人(负责人) * 获取 法定代表人(负责人)
* @return legalPersonNameList * @return legalPersonNameList
*/ */
public List<String> getLegalPersonNameList(){ public List<String> getLegalPersonNameList(){
return this.legalPersonNameList; return this.legalPersonNameList;
} }
/** /**
* 设置 法定代表人(负责人) * 设置 法定代表人(负责人)
* @param legalPersonNameList * @param legalPersonNameList
*/ */
public void setLegalPersonNameList(List<String> legalPersonNameList){ public void setLegalPersonNameList(List<String> legalPersonNameList){
this.legalPersonNameList = legalPersonNameList; this.legalPersonNameList = legalPersonNameList;
} }
/** /**
* 获取 法定代表人(负责人) * 获取 法定代表人(负责人)
* @return legalPersonNameNotList * @return legalPersonNameNotList
*/ */
public List<String> getLegalPersonNameNotList(){ public List<String> getLegalPersonNameNotList(){
return this.legalPersonNameNotList; return this.legalPersonNameNotList;
} }
/** /**
* 设置 法定代表人(负责人) * 设置 法定代表人(负责人)
* @param legalPersonNameNotList * @param legalPersonNameNotList
*/ */
public void setLegalPersonNameNotList(List<String> legalPersonNameNotList){ public void setLegalPersonNameNotList(List<String> legalPersonNameNotList){
this.legalPersonNameNotList = legalPersonNameNotList; this.legalPersonNameNotList = legalPersonNameNotList;
} }
/** /**
* 获取 统一社会信用代码 * 获取 统一社会信用代码
* @return creditCodeList * @return creditCodeList
*/ */
public List<String> getCreditCodeList(){ public List<String> getCreditCodeList(){
return this.creditCodeList; return this.creditCodeList;
} }
/** /**
* 设置 统一社会信用代码 * 设置 统一社会信用代码
* @param creditCodeList * @param creditCodeList
*/ */
public void setCreditCodeList(List<String> creditCodeList){ public void setCreditCodeList(List<String> creditCodeList){
this.creditCodeList = creditCodeList; this.creditCodeList = creditCodeList;
} }
/** /**
* 获取 统一社会信用代码 * 获取 统一社会信用代码
* @return creditCodeNotList * @return creditCodeNotList
*/ */
public List<String> getCreditCodeNotList(){ public List<String> getCreditCodeNotList(){
return this.creditCodeNotList; return this.creditCodeNotList;
} }
/** /**
* 设置 统一社会信用代码 * 设置 统一社会信用代码
* @param creditCodeNotList * @param creditCodeNotList
*/ */
public void setCreditCodeNotList(List<String> creditCodeNotList){ public void setCreditCodeNotList(List<String> creditCodeNotList){
this.creditCodeNotList = creditCodeNotList; this.creditCodeNotList = creditCodeNotList;
} }
/** /**
* 获取 开始 制证日期 * 获取 开始 制证日期
* @return productLicenseTimeStart * @return productLicenseTimeStart
*/ */
public String getProductLicenseTimeStart(){ public String getProductLicenseTimeStart(){
return this.productLicenseTimeStart; return this.productLicenseTimeStart;
} }
/** /**
* 设置 开始 制证日期 * 设置 开始 制证日期
* @param productLicenseTimeStart * @param productLicenseTimeStart
*/ */
public void setProductLicenseTimeStart(String productLicenseTimeStart){ public void setProductLicenseTimeStart(String productLicenseTimeStart){
this.productLicenseTimeStart = productLicenseTimeStart; this.productLicenseTimeStart = productLicenseTimeStart;
} }
/** /**
* 获取 结束 制证日期 * 获取 结束 制证日期
* @return productLicenseTimeEnd * @return productLicenseTimeEnd
*/ */
public String getProductLicenseTimeEnd(){ public String getProductLicenseTimeEnd(){
return this.productLicenseTimeEnd; return this.productLicenseTimeEnd;
} }
/** /**
* 设置 结束 制证日期 * 设置 结束 制证日期
* @param productLicenseTimeEnd * @param productLicenseTimeEnd
*/ */
public void setProductLicenseTimeEnd(String productLicenseTimeEnd){ public void setProductLicenseTimeEnd(String productLicenseTimeEnd){
this.productLicenseTimeEnd = productLicenseTimeEnd; this.productLicenseTimeEnd = productLicenseTimeEnd;
} }
/** /**
* 获取 证件二维码 * 获取 证件二维码
* @return certQRCodeList * @return certQRCodeList
*/ */
public List<String> getCertQRCodeList(){ public List<String> getCertQRCodeList(){
return this.certQRCodeList; return this.certQRCodeList;
} }
/** /**
* 设置 证件二维码 * 设置 证件二维码
* @param certQRCodeList * @param certQRCodeList
*/ */
public void setCertQRCodeList(List<String> certQRCodeList){ public void setCertQRCodeList(List<String> certQRCodeList){
this.certQRCodeList = certQRCodeList; this.certQRCodeList = certQRCodeList;
} }
/** /**
* 获取 证件二维码 * 获取 证件二维码
* @return certQRCodeNotList * @return certQRCodeNotList
*/ */
public List<String> getCertQRCodeNotList(){ public List<String> getCertQRCodeNotList(){
return this.certQRCodeNotList; return this.certQRCodeNotList;
} }
/** /**
* 设置 证件二维码 * 设置 证件二维码
* @param certQRCodeNotList * @param certQRCodeNotList
*/ */
public void setCertQRCodeNotList(List<String> certQRCodeNotList){ public void setCertQRCodeNotList(List<String> certQRCodeNotList){
this.certQRCodeNotList = certQRCodeNotList; this.certQRCodeNotList = certQRCodeNotList;
} }
/** /**
* 获取 制证机关 * 获取 制证机关
* @return certAuthorityList * @return certAuthorityList
*/ */
public List<String> getCertAuthorityList(){ public List<String> getCertAuthorityList(){
return this.certAuthorityList; return this.certAuthorityList;
} }
/** /**
* 设置 制证机关 * 设置 制证机关
* @param certAuthorityList * @param certAuthorityList
*/ */
public void setCertAuthorityList(List<String> certAuthorityList){ public void setCertAuthorityList(List<String> certAuthorityList){
this.certAuthorityList = certAuthorityList; this.certAuthorityList = certAuthorityList;
} }
/** /**
* 获取 制证机关 * 获取 制证机关
* @return certAuthorityNotList * @return certAuthorityNotList
*/ */
public List<String> getCertAuthorityNotList(){ public List<String> getCertAuthorityNotList(){
return this.certAuthorityNotList; return this.certAuthorityNotList;
} }
/** /**
* 设置 制证机关 * 设置 制证机关
* @param certAuthorityNotList * @param certAuthorityNotList
*/ */
public void setCertAuthorityNotList(List<String> certAuthorityNotList){ public void setCertAuthorityNotList(List<String> certAuthorityNotList){
this.certAuthorityNotList = certAuthorityNotList; this.certAuthorityNotList = certAuthorityNotList;
} }
/** /**
* 获取 经营场所 * 获取 经营场所
* @return businessPlaceList * @return businessPlaceList
*/ */
public List<String> getBusinessPlaceList(){ public List<String> getBusinessPlaceList(){
return this.businessPlaceList; return this.businessPlaceList;
} }
/** /**
* 设置 经营场所 * 设置 经营场所
* @param businessPlaceList * @param businessPlaceList
*/ */
public void setBusinessPlaceList(List<String> businessPlaceList){ public void setBusinessPlaceList(List<String> businessPlaceList){
this.businessPlaceList = businessPlaceList; this.businessPlaceList = businessPlaceList;
} }
/** /**
* 获取 经营场所 * 获取 经营场所
* @return businessPlaceNotList * @return businessPlaceNotList
*/ */
public List<String> getBusinessPlaceNotList(){ public List<String> getBusinessPlaceNotList(){
return this.businessPlaceNotList; return this.businessPlaceNotList;
} }
/** /**
* 设置 经营场所 * 设置 经营场所
* @param businessPlaceNotList * @param businessPlaceNotList
*/ */
public void setBusinessPlaceNotList(List<String> businessPlaceNotList){ public void setBusinessPlaceNotList(List<String> businessPlaceNotList){
this.businessPlaceNotList = businessPlaceNotList; this.businessPlaceNotList = businessPlaceNotList;
} }
/** /**
* 获取 许可项目 * 获取 许可项目
* @return licensedItemsList * @return licensedItemsList
*/ */
public List<String> getLicensedItemsList(){ public List<String> getLicensedItemsList(){
return this.licensedItemsList; return this.licensedItemsList;
} }
/** /**
* 设置 许可项目 * 设置 许可项目
* @param licensedItemsList * @param licensedItemsList
*/ */
public void setLicensedItemsList(List<String> licensedItemsList){ public void setLicensedItemsList(List<String> licensedItemsList){
this.licensedItemsList = licensedItemsList; this.licensedItemsList = licensedItemsList;
} }
/** /**
* 获取 许可项目 * 获取 许可项目
* @return licensedItemsNotList * @return licensedItemsNotList
*/ */
public List<String> getLicensedItemsNotList(){ public List<String> getLicensedItemsNotList(){
return this.licensedItemsNotList; return this.licensedItemsNotList;
} }
/** /**
* 设置 许可项目 * 设置 许可项目
* @param licensedItemsNotList * @param licensedItemsNotList
*/ */
public void setLicensedItemsNotList(List<String> licensedItemsNotList){ public void setLicensedItemsNotList(List<String> licensedItemsNotList){
this.licensedItemsNotList = licensedItemsNotList; this.licensedItemsNotList = licensedItemsNotList;
} }
/** /**
* 获取 正本文件名称 * 获取 正本文件名称
* @return originalFileNameList * @return originalFileNameList
*/ */
public List<String> getOriginalFileNameList(){ public List<String> getOriginalFileNameList(){
return this.originalFileNameList; return this.originalFileNameList;
} }
/** /**
* 设置 正本文件名称 * 设置 正本文件名称
* @param originalFileNameList * @param originalFileNameList
*/ */
public void setOriginalFileNameList(List<String> originalFileNameList){ public void setOriginalFileNameList(List<String> originalFileNameList){
this.originalFileNameList = originalFileNameList; this.originalFileNameList = originalFileNameList;
} }
/** /**
* 获取 正本文件名称 * 获取 正本文件名称
* @return originalFileNameNotList * @return originalFileNameNotList
*/ */
public List<String> getOriginalFileNameNotList(){ public List<String> getOriginalFileNameNotList(){
return this.originalFileNameNotList; return this.originalFileNameNotList;
} }
/** /**
* 设置 正本文件名称 * 设置 正本文件名称
* @param originalFileNameNotList * @param originalFileNameNotList
*/ */
public void setOriginalFileNameNotList(List<String> originalFileNameNotList){ public void setOriginalFileNameNotList(List<String> originalFileNameNotList){
this.originalFileNameNotList = originalFileNameNotList; this.originalFileNameNotList = originalFileNameNotList;
} }
/** /**
* 获取 正本文件相对路径地址 * 获取 正本文件相对路径地址
* @return originalFilePathList * @return originalFilePathList
*/ */
public List<String> getOriginalFilePathList(){ public List<String> getOriginalFilePathList(){
return this.originalFilePathList; return this.originalFilePathList;
} }
/** /**
* 设置 正本文件相对路径地址 * 设置 正本文件相对路径地址
* @param originalFilePathList * @param originalFilePathList
*/ */
public void setOriginalFilePathList(List<String> originalFilePathList){ public void setOriginalFilePathList(List<String> originalFilePathList){
this.originalFilePathList = originalFilePathList; this.originalFilePathList = originalFilePathList;
} }
/** /**
* 获取 正本文件相对路径地址 * 获取 正本文件相对路径地址
* @return originalFilePathNotList * @return originalFilePathNotList
*/ */
public List<String> getOriginalFilePathNotList(){ public List<String> getOriginalFilePathNotList(){
return this.originalFilePathNotList; return this.originalFilePathNotList;
} }
/** /**
* 设置 正本文件相对路径地址 * 设置 正本文件相对路径地址
* @param originalFilePathNotList * @param originalFilePathNotList
*/ */
public void setOriginalFilePathNotList(List<String> originalFilePathNotList){ public void setOriginalFilePathNotList(List<String> originalFilePathNotList){
this.originalFilePathNotList = originalFilePathNotList; this.originalFilePathNotList = originalFilePathNotList;
} }
/** /**
* 获取 副本文件名称 * 获取 副本文件名称
* @return copyFileNameList * @return copyFileNameList
*/ */
public List<String> getCopyFileNameList(){ public List<String> getCopyFileNameList(){
return this.copyFileNameList; return this.copyFileNameList;
} }
/** /**
* 设置 副本文件名称 * 设置 副本文件名称
* @param copyFileNameList * @param copyFileNameList
*/ */
public void setCopyFileNameList(List<String> copyFileNameList){ public void setCopyFileNameList(List<String> copyFileNameList){
this.copyFileNameList = copyFileNameList; this.copyFileNameList = copyFileNameList;
} }
/** /**
* 获取 副本文件名称 * 获取 副本文件名称
* @return copyFileNameNotList * @return copyFileNameNotList
*/ */
public List<String> getCopyFileNameNotList(){ public List<String> getCopyFileNameNotList(){
return this.copyFileNameNotList; return this.copyFileNameNotList;
} }
/** /**
* 设置 副本文件名称 * 设置 副本文件名称
* @param copyFileNameNotList * @param copyFileNameNotList
*/ */
public void setCopyFileNameNotList(List<String> copyFileNameNotList){ public void setCopyFileNameNotList(List<String> copyFileNameNotList){
this.copyFileNameNotList = copyFileNameNotList; this.copyFileNameNotList = copyFileNameNotList;
} }
/** /**
* 获取 副本文件相对路径地址 * 获取 副本文件相对路径地址
* @return copyFilePathList * @return copyFilePathList
*/ */
public List<String> getCopyFilePathList(){ public List<String> getCopyFilePathList(){
return this.copyFilePathList; return this.copyFilePathList;
} }
/** /**
* 设置 副本文件相对路径地址 * 设置 副本文件相对路径地址
* @param copyFilePathList * @param copyFilePathList
*/ */
public void setCopyFilePathList(List<String> copyFilePathList){ public void setCopyFilePathList(List<String> copyFilePathList){
this.copyFilePathList = copyFilePathList; this.copyFilePathList = copyFilePathList;
} }
/** /**
* 获取 副本文件相对路径地址 * 获取 副本文件相对路径地址
* @return copyFilePathNotList * @return copyFilePathNotList
*/ */
public List<String> getCopyFilePathNotList(){ public List<String> getCopyFilePathNotList(){
return this.copyFilePathNotList; return this.copyFilePathNotList;
} }
/** /**
* 设置 副本文件相对路径地址 * 设置 副本文件相对路径地址
* @param copyFilePathNotList * @param copyFilePathNotList
*/ */
public void setCopyFilePathNotList(List<String> copyFilePathNotList){ public void setCopyFilePathNotList(List<String> copyFilePathNotList){
this.copyFilePathNotList = copyFilePathNotList; this.copyFilePathNotList = copyFilePathNotList;
} }
/** /**
* 获取 简介 * 获取 简介
* @return summaryList * @return summaryList
*/ */
public List<String> getSummaryList(){ public List<String> getSummaryList(){
return this.summaryList; return this.summaryList;
} }
/** /**
* 设置 简介 * 设置 简介
* @param summaryList * @param summaryList
*/ */
public void setSummaryList(List<String> summaryList){ public void setSummaryList(List<String> summaryList){
this.summaryList = summaryList; this.summaryList = summaryList;
} }
/** /**
* 获取 简介 * 获取 简介
* @return summaryNotList * @return summaryNotList
*/ */
public List<String> getSummaryNotList(){ public List<String> getSummaryNotList(){
return this.summaryNotList; return this.summaryNotList;
} }
/** /**
* 设置 简介 * 设置 简介
* @param summaryNotList * @param summaryNotList
*/ */
public void setSummaryNotList(List<String> summaryNotList){ public void setSummaryNotList(List<String> summaryNotList){
this.summaryNotList = summaryNotList; this.summaryNotList = summaryNotList;
} }
/** /**
* 获取 动态表单样式 * 获取 动态表单样式
* @return formStyleContentList * @return formStyleContentList
*/ */
public List<String> getFormStyleContentList(){ public List<String> getFormStyleContentList(){
return this.formStyleContentList; return this.formStyleContentList;
} }
/** /**
* 设置 动态表单样式 * 设置 动态表单样式
* @param formStyleContentList * @param formStyleContentList
*/ */
public void setFormStyleContentList(List<String> formStyleContentList){ public void setFormStyleContentList(List<String> formStyleContentList){
this.formStyleContentList = formStyleContentList; this.formStyleContentList = formStyleContentList;
} }
/** /**
* 获取 动态表单样式 * 获取 动态表单样式
* @return formStyleContentNotList * @return formStyleContentNotList
*/ */
public List<String> getFormStyleContentNotList(){ public List<String> getFormStyleContentNotList(){
return this.formStyleContentNotList; return this.formStyleContentNotList;
} }
/** /**
* 设置 动态表单样式 * 设置 动态表单样式
* @param formStyleContentNotList * @param formStyleContentNotList
*/ */
public void setFormStyleContentNotList(List<String> formStyleContentNotList){ public void setFormStyleContentNotList(List<String> formStyleContentNotList){
this.formStyleContentNotList = formStyleContentNotList; this.formStyleContentNotList = formStyleContentNotList;
} }
/** /**
* 获取 提交的表单 * 获取 提交的表单
* @return formContentList * @return formContentList
*/ */
public List<String> getFormContentList(){ public List<String> getFormContentList(){
return this.formContentList; return this.formContentList;
} }
/** /**
* 设置 提交的表单 * 设置 提交的表单
* @param formContentList * @param formContentList
*/ */
public void setFormContentList(List<String> formContentList){ public void setFormContentList(List<String> formContentList){
this.formContentList = formContentList; this.formContentList = formContentList;
} }
/** /**
* 获取 提交的表单 * 获取 提交的表单
* @return formContentNotList * @return formContentNotList
*/ */
public List<String> getFormContentNotList(){ public List<String> getFormContentNotList(){
return this.formContentNotList; return this.formContentNotList;
} }
/** /**
* 设置 提交的表单 * 设置 提交的表单
* @param formContentNotList * @param formContentNotList
*/ */
public void setFormContentNotList(List<String> formContentNotList){ public void setFormContentNotList(List<String> formContentNotList){
this.formContentNotList = formContentNotList; this.formContentNotList = formContentNotList;
} }
/** /**
* 获取 开始 处理状态(0.未处理,1.已处理) * 获取 开始 处理状态(0.未处理,1.已处理)
* @return processStatusStart * @return processStatusStart
*/ */
public Integer getProcessStatusStart(){ public Integer getProcessStatusStart(){
return this.processStatusStart; return this.processStatusStart;
} }
/** /**
* 设置 开始 处理状态(0.未处理,1.已处理) * 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart * @param processStatusStart
*/ */
public void setProcessStatusStart(Integer processStatusStart){ public void setProcessStatusStart(Integer processStatusStart){
this.processStatusStart = processStatusStart; this.processStatusStart = processStatusStart;
} }
/** /**
* 获取 结束 处理状态(0.未处理,1.已处理) * 获取 结束 处理状态(0.未处理,1.已处理)
* @return $processStatusEnd * @return $processStatusEnd
*/ */
public Integer getProcessStatusEnd(){ public Integer getProcessStatusEnd(){
return this.processStatusEnd; return this.processStatusEnd;
} }
/** /**
* 设置 结束 处理状态(0.未处理,1.已处理) * 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd * @param processStatusEnd
*/ */
public void setProcessStatusEnd(Integer processStatusEnd){ public void setProcessStatusEnd(Integer processStatusEnd){
this.processStatusEnd = processStatusEnd; this.processStatusEnd = processStatusEnd;
} }
/** /**
* 获取 增加 处理状态(0.未处理,1.已处理) * 获取 增加 处理状态(0.未处理,1.已处理)
* @return processStatusIncrement * @return processStatusIncrement
*/ */
public Integer getProcessStatusIncrement(){ public Integer getProcessStatusIncrement(){
return this.processStatusIncrement; return this.processStatusIncrement;
} }
/** /**
* 设置 增加 处理状态(0.未处理,1.已处理) * 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement * @param processStatusIncrement
*/ */
public void setProcessStatusIncrement(Integer processStatusIncrement){ public void setProcessStatusIncrement(Integer processStatusIncrement){
this.processStatusIncrement = processStatusIncrement; this.processStatusIncrement = processStatusIncrement;
} }
/** /**
* 获取 处理状态(0.未处理,1.已处理) * 获取 处理状态(0.未处理,1.已处理)
* @return processStatusList * @return processStatusList
*/ */
public List<Integer> getProcessStatusList(){ public List<Integer> getProcessStatusList(){
return this.processStatusList; return this.processStatusList;
} }
/** /**
* 设置 处理状态(0.未处理,1.已处理) * 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList * @param processStatusList
*/ */
public void setProcessStatusList(List<Integer> processStatusList){ public void setProcessStatusList(List<Integer> processStatusList){
this.processStatusList = processStatusList; this.processStatusList = processStatusList;
} }
/** /**
* 获取 处理状态(0.未处理,1.已处理) * 获取 处理状态(0.未处理,1.已处理)
* @return processStatusNotList * @return processStatusNotList
*/ */
public List<Integer> getProcessStatusNotList(){ public List<Integer> getProcessStatusNotList(){
return this.processStatusNotList; return this.processStatusNotList;
} }
/** /**
* 设置 处理状态(0.未处理,1.已处理) * 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList * @param processStatusNotList
*/ */
public void setProcessStatusNotList(List<Integer> processStatusNotList){ public void setProcessStatusNotList(List<Integer> processStatusNotList){
this.processStatusNotList = processStatusNotList; this.processStatusNotList = processStatusNotList;
} }
/** /**
* 获取 备注 * 获取 备注
* @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 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 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 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 reportUserIdStart
*/ */
public Long getReportUserIdStart(){
return this.reportUserIdStart;
}
/**
* 设置 开始 联报用户
* @param reportUserIdStart
*/
public void setReportUserIdStart(Long reportUserIdStart){
this.reportUserIdStart = reportUserIdStart;
}
/**
* 获取 结束 联报用户
* @return $reportUserIdEnd
*/
public Long getReportUserIdEnd(){
return this.reportUserIdEnd;
}
/**
* 设置 结束 联报用户
* @param reportUserIdEnd
*/
public void setReportUserIdEnd(Long reportUserIdEnd){
this.reportUserIdEnd = reportUserIdEnd;
}
/**
* 获取 增加 联报用户
* @return reportUserIdIncrement
*/
public Long getReportUserIdIncrement(){
return this.reportUserIdIncrement;
}
/**
* 设置 增加 联报用户
* @param reportUserIdIncrement
*/
public void setReportUserIdIncrement(Long reportUserIdIncrement){
this.reportUserIdIncrement = reportUserIdIncrement;
}
/**
* 获取 联报用户
* @return reportUserIdList
*/
public List<Long> getReportUserIdList(){
return this.reportUserIdList;
}
/**
* 设置 联报用户
* @param reportUserIdList
*/
public void setReportUserIdList(List<Long> reportUserIdList){
this.reportUserIdList = reportUserIdList;
}
/**
* 获取 联报用户
* @return reportUserIdNotList
*/
public List<Long> getReportUserIdNotList(){
return this.reportUserIdNotList;
}
/**
* 设置 联报用户
* @param reportUserIdNotList
*/
public void setReportUserIdNotList(List<Long> reportUserIdNotList){
this.reportUserIdNotList = reportUserIdNotList;
}
/**
* 获取 联报用户名称
* @return reportUserNameList
*/
public List<String> getReportUserNameList(){
return this.reportUserNameList;
}
/**
* 设置 联报用户名称
* @param reportUserNameList
*/
public void setReportUserNameList(List<String> reportUserNameList){
this.reportUserNameList = reportUserNameList;
}
/**
* 获取 联报用户名称
* @return reportUserNameNotList
*/
public List<String> getReportUserNameNotList(){
return this.reportUserNameNotList;
}
/**
* 设置 联报用户名称
* @param reportUserNameNotList
*/
public void setReportUserNameNotList(List<String> reportUserNameNotList){
this.reportUserNameNotList = reportUserNameNotList;
}
/**
* 获取 开始 联报时间
* @return reportTimeStart
*/
public String getReportTimeStart(){
return this.reportTimeStart;
}
/**
* 设置 开始 联报时间
* @param reportTimeStart
*/
public void setReportTimeStart(String reportTimeStart){
this.reportTimeStart = reportTimeStart;
}
/**
* 获取 结束 联报时间
* @return reportTimeEnd
*/
public String getReportTimeEnd(){
return this.reportTimeEnd;
}
/**
* 设置 结束 联报时间
* @param reportTimeEnd
*/
public void setReportTimeEnd(String reportTimeEnd){
this.reportTimeEnd = reportTimeEnd;
}
/**
* 获取 创建用户名称
* @return createUserNameList
*/
public List<String> getCreateUserNameList(){
return this.createUserNameList;
}
/**
* 设置 创建用户名称
* @param createUserNameList
*/
public void setCreateUserNameList(List<String> createUserNameList){
this.createUserNameList = createUserNameList;
}
/**
* 获取 创建用户名称
* @return createUserNameNotList
*/
public List<String> getCreateUserNameNotList(){
return this.createUserNameNotList;
}
/**
* 设置 创建用户名称
* @param createUserNameNotList
*/
public void setCreateUserNameNotList(List<String> createUserNameNotList){
this.createUserNameNotList = createUserNameNotList;
}
/**
* 获取 更新用户名称
* @return updateUserNameList
*/
public List<String> getUpdateUserNameList(){
return this.updateUserNameList;
}
/**
* 设置 更新用户名称
* @param updateUserNameList
*/
public void setUpdateUserNameList(List<String> updateUserNameList){
this.updateUserNameList = updateUserNameList;
}
/**
* 获取 更新用户名称
* @return updateUserNameNotList
*/
public List<String> getUpdateUserNameNotList(){
return this.updateUserNameNotList;
}
/**
* 设置 更新用户名称
* @param updateUserNameNotList
*/
public void setUpdateUserNameNotList(List<String> updateUserNameNotList){
this.updateUserNameNotList = updateUserNameNotList;
}
/**
* 设置 主键ID,主键,自增长
* @param id
*/
public ChildLicenseQuery id(Long id){ public ChildLicenseQuery id(Long id){
setId(id); setId(id);
return this; return this;
} }
/** /**
* 设置 开始 主键ID,主键,自增长 * 设置 开始 主键ID,主键,自增长
* @param idStart * @param idStart
*/ */
public ChildLicenseQuery idStart(Long idStart){ public ChildLicenseQuery idStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
return this; return this;
} }
/** /**
* 设置 结束 主键ID,主键,自增长 * 设置 结束 主键ID,主键,自增长
* @param idEnd * @param idEnd
*/ */
public ChildLicenseQuery idEnd(Long idEnd){ public ChildLicenseQuery idEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 增加 主键ID,主键,自增长 * 设置 增加 主键ID,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public ChildLicenseQuery idIncrement(Long idIncrement){ public ChildLicenseQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
return this; return this;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idList * @param idList
*/ */
public ChildLicenseQuery idList(List<Long> idList){ public ChildLicenseQuery idList(List<Long> idList){
this.idList = idList; this.idList = idList;
return this; return this;
} }
/** /**
* 设置 主键ID,主键,自增长 * 设置 主键ID,主键,自增长
* @param idNotList * @param idNotList
*/ */
public ChildLicenseQuery idNotList(List<Long> idNotList){ public ChildLicenseQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteId * @param siteId
*/ */
public ChildLicenseQuery siteId(Long siteId){ public ChildLicenseQuery siteId(Long siteId){
setSiteId(siteId); setSiteId(siteId);
return this; return this;
} }
/** /**
* 设置 开始 站点Id * 设置 开始 站点Id
* @param siteIdStart * @param siteIdStart
*/ */
public ChildLicenseQuery siteIdStart(Long siteIdStart){ public ChildLicenseQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
return this; return this;
} }
/** /**
* 设置 结束 站点Id * 设置 结束 站点Id
* @param siteIdEnd * @param siteIdEnd
*/ */
public ChildLicenseQuery siteIdEnd(Long siteIdEnd){ public ChildLicenseQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 站点Id * 设置 增加 站点Id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public ChildLicenseQuery siteIdIncrement(Long siteIdIncrement){ public ChildLicenseQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdList * @param siteIdList
*/ */
public ChildLicenseQuery siteIdList(List<Long> siteIdList){ public ChildLicenseQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdNotList * @param siteIdNotList
*/ */
public ChildLicenseQuery siteIdNotList(List<Long> siteIdNotList){ public ChildLicenseQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteName * @param siteName
*/ */
public ChildLicenseQuery siteName(String siteName){ public ChildLicenseQuery siteName(String siteName){
setSiteName(siteName); setSiteName(siteName);
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public ChildLicenseQuery siteNameList(List<String> siteNameList){ public ChildLicenseQuery siteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
return this; return this;
} }
/** /**
* 设置 目录id * 设置 目录id
* @param catalogId * @param catalogId
*/ */
public ChildLicenseQuery catalogId(Long catalogId){ public ChildLicenseQuery catalogId(Long catalogId){
setCatalogId(catalogId); setCatalogId(catalogId);
return this; return this;
} }
/** /**
* 设置 开始 目录id * 设置 开始 目录id
* @param catalogIdStart * @param catalogIdStart
*/ */
public ChildLicenseQuery catalogIdStart(Long catalogIdStart){ public ChildLicenseQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart; this.catalogIdStart = catalogIdStart;
return this; return this;
} }
/** /**
* 设置 结束 目录id * 设置 结束 目录id
* @param catalogIdEnd * @param catalogIdEnd
*/ */
public ChildLicenseQuery catalogIdEnd(Long catalogIdEnd){ public ChildLicenseQuery catalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd; this.catalogIdEnd = catalogIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 目录id * 设置 增加 目录id
* @param catalogIdIncrement * @param catalogIdIncrement
*/ */
public ChildLicenseQuery catalogIdIncrement(Long catalogIdIncrement){ public ChildLicenseQuery catalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement; this.catalogIdIncrement = catalogIdIncrement;
return this; return this;
} }
/** /**
* 设置 目录id * 设置 目录id
* @param catalogIdList * @param catalogIdList
*/ */
public ChildLicenseQuery catalogIdList(List<Long> catalogIdList){ public ChildLicenseQuery catalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList; this.catalogIdList = catalogIdList;
return this; return this;
} }
/** /**
* 设置 目录id * 设置 目录id
* @param catalogIdNotList * @param catalogIdNotList
*/ */
public ChildLicenseQuery catalogIdNotList(List<Long> catalogIdNotList){ public ChildLicenseQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList; this.catalogIdNotList = catalogIdNotList;
return this; return this;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogName * @param catalogName
*/ */
public ChildLicenseQuery catalogName(String catalogName){ public ChildLicenseQuery catalogName(String catalogName){
setCatalogName(catalogName); setCatalogName(catalogName);
return this; return this;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogNameList * @param catalogNameList
*/ */
public ChildLicenseQuery catalogNameList(List<String> catalogNameList){ public ChildLicenseQuery catalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList; this.catalogNameList = catalogNameList;
return this; return this;
} }
/** /**
* 设置 申请Id * 设置 申请Id
* @param applyId * @param applyId
*/ */
public ChildLicenseQuery applyId(Long applyId){ public ChildLicenseQuery applyId(Long applyId){
setApplyId(applyId); setApplyId(applyId);
return this; return this;
} }
/** /**
* 设置 开始 申请Id * 设置 开始 申请Id
* @param applyIdStart * @param applyIdStart
*/ */
public ChildLicenseQuery applyIdStart(Long applyIdStart){ public ChildLicenseQuery applyIdStart(Long applyIdStart){
this.applyIdStart = applyIdStart; this.applyIdStart = applyIdStart;
return this; return this;
} }
/** /**
* 设置 结束 申请Id * 设置 结束 申请Id
* @param applyIdEnd * @param applyIdEnd
*/ */
public ChildLicenseQuery applyIdEnd(Long applyIdEnd){ public ChildLicenseQuery applyIdEnd(Long applyIdEnd){
this.applyIdEnd = applyIdEnd; this.applyIdEnd = applyIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 申请Id * 设置 增加 申请Id
* @param applyIdIncrement * @param applyIdIncrement
*/ */
public ChildLicenseQuery applyIdIncrement(Long applyIdIncrement){ public ChildLicenseQuery applyIdIncrement(Long applyIdIncrement){
this.applyIdIncrement = applyIdIncrement; this.applyIdIncrement = applyIdIncrement;
return this; return this;
} }
/** /**
* 设置 申请Id * 设置 申请Id
* @param applyIdList * @param applyIdList
*/ */
public ChildLicenseQuery applyIdList(List<Long> applyIdList){ public ChildLicenseQuery applyIdList(List<Long> applyIdList){
this.applyIdList = applyIdList; this.applyIdList = applyIdList;
return this; return this;
} }
/** /**
* 设置 申请Id * 设置 申请Id
* @param applyIdNotList * @param applyIdNotList
*/ */
public ChildLicenseQuery applyIdNotList(List<Long> applyIdNotList){ public ChildLicenseQuery applyIdNotList(List<Long> applyIdNotList){
this.applyIdNotList = applyIdNotList; this.applyIdNotList = applyIdNotList;
return this; return this;
} }
/** /**
* 设置 子证配置Id * 设置 子证配置Id
* @param documentId * @param documentId
*/ */
public ChildLicenseQuery documentId(Long documentId){ public ChildLicenseQuery documentId(Long documentId){
setDocumentId(documentId); setDocumentId(documentId);
return this; return this;
} }
/** /**
* 设置 开始 子证配置Id * 设置 开始 子证配置Id
* @param documentIdStart * @param documentIdStart
*/ */
public ChildLicenseQuery documentIdStart(Long documentIdStart){ public ChildLicenseQuery documentIdStart(Long documentIdStart){
this.documentIdStart = documentIdStart; this.documentIdStart = documentIdStart;
return this; return this;
} }
/** /**
* 设置 结束 子证配置Id * 设置 结束 子证配置Id
* @param documentIdEnd * @param documentIdEnd
*/ */
public ChildLicenseQuery documentIdEnd(Long documentIdEnd){ public ChildLicenseQuery documentIdEnd(Long documentIdEnd){
this.documentIdEnd = documentIdEnd; this.documentIdEnd = documentIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 子证配置Id * 设置 增加 子证配置Id
* @param documentIdIncrement * @param documentIdIncrement
*/ */
public ChildLicenseQuery documentIdIncrement(Long documentIdIncrement){ public ChildLicenseQuery documentIdIncrement(Long documentIdIncrement){
this.documentIdIncrement = documentIdIncrement; this.documentIdIncrement = documentIdIncrement;
return this; return this;
} }
/** /**
* 设置 子证配置Id * 设置 子证配置Id
* @param documentIdList * @param documentIdList
*/ */
public ChildLicenseQuery documentIdList(List<Long> documentIdList){ public ChildLicenseQuery documentIdList(List<Long> documentIdList){
this.documentIdList = documentIdList; this.documentIdList = documentIdList;
return this; return this;
} }
/** /**
* 设置 子证配置Id * 设置 子证配置Id
* @param documentIdNotList * @param documentIdNotList
*/ */
public ChildLicenseQuery documentIdNotList(List<Long> documentIdNotList){ public ChildLicenseQuery documentIdNotList(List<Long> documentIdNotList){
this.documentIdNotList = documentIdNotList; this.documentIdNotList = documentIdNotList;
return this; return this;
} }
/** /**
* 设置 子证名称 * 设置 子证名称
* @param documentName * @param documentName
*/ */
public ChildLicenseQuery documentName(String documentName){ public ChildLicenseQuery documentName(String documentName){
setDocumentName(documentName); setDocumentName(documentName);
return this; return this;
} }
/** /**
* 设置 子证名称 * 设置 子证名称
* @param documentNameList * @param documentNameList
*/ */
public ChildLicenseQuery documentNameList(List<String> documentNameList){ public ChildLicenseQuery documentNameList(List<String> documentNameList){
this.documentNameList = documentNameList; this.documentNameList = documentNameList;
return this; return this;
} }
/** /**
* 设置 部门id * 设置 部门id
* @param deptId * @param deptId
*/ */
public ChildLicenseQuery deptId(Long deptId){ public ChildLicenseQuery deptId(Long deptId){
setDeptId(deptId); setDeptId(deptId);
return this; return this;
} }
/** /**
* 设置 开始 部门id * 设置 开始 部门id
* @param deptIdStart * @param deptIdStart
*/ */
public ChildLicenseQuery deptIdStart(Long deptIdStart){ public ChildLicenseQuery deptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart; this.deptIdStart = deptIdStart;
return this; return this;
} }
/** /**
* 设置 结束 部门id * 设置 结束 部门id
* @param deptIdEnd * @param deptIdEnd
*/ */
public ChildLicenseQuery deptIdEnd(Long deptIdEnd){ public ChildLicenseQuery deptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd; this.deptIdEnd = deptIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 部门id * 设置 增加 部门id
* @param deptIdIncrement * @param deptIdIncrement
*/ */
public ChildLicenseQuery deptIdIncrement(Long deptIdIncrement){ public ChildLicenseQuery deptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement; this.deptIdIncrement = deptIdIncrement;
return this; return this;
} }
/** /**
* 设置 部门id * 设置 部门id
* @param deptIdList * @param deptIdList
*/ */
public ChildLicenseQuery deptIdList(List<Long> deptIdList){ public ChildLicenseQuery deptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList; this.deptIdList = deptIdList;
return this; return this;
} }
/** /**
* 设置 部门id * 设置 部门id
* @param deptIdNotList * @param deptIdNotList
*/ */
public ChildLicenseQuery deptIdNotList(List<Long> deptIdNotList){ public ChildLicenseQuery deptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList; this.deptIdNotList = deptIdNotList;
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptName * @param deptName
*/ */
public ChildLicenseQuery deptName(String deptName){ public ChildLicenseQuery deptName(String deptName){
setDeptName(deptName); setDeptName(deptName);
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameList * @param deptNameList
*/ */
public ChildLicenseQuery deptNameList(List<String> deptNameList){ public ChildLicenseQuery deptNameList(List<String> deptNameList){
this.deptNameList = deptNameList; this.deptNameList = deptNameList;
return this; return this;
} }
/** /**
* 设置 市场主体名称 * 设置 市场主体名称
* @param marketEntityName * @param marketEntityName
*/ */
public ChildLicenseQuery marketEntityName(String marketEntityName){ public ChildLicenseQuery marketEntityName(String marketEntityName){
setMarketEntityName(marketEntityName); setMarketEntityName(marketEntityName);
return this; return this;
} }
/** /**
* 设置 市场主体名称 * 设置 市场主体名称
* @param marketEntityNameList * @param marketEntityNameList
*/ */
public ChildLicenseQuery marketEntityNameList(List<String> marketEntityNameList){ public ChildLicenseQuery marketEntityNameList(List<String> marketEntityNameList){
this.marketEntityNameList = marketEntityNameList; this.marketEntityNameList = marketEntityNameList;
return this; return this;
} }
/** /**
* 设置 许可证编号 * 设置 许可证编号
* @param licenseCode * @param licenseCode
*/ */
public ChildLicenseQuery licenseCode(String licenseCode){ public ChildLicenseQuery licenseCode(String licenseCode){
setLicenseCode(licenseCode); setLicenseCode(licenseCode);
return this; return this;
} }
/** /**
* 设置 许可证编号 * 设置 许可证编号
* @param licenseCodeList * @param licenseCodeList
*/ */
public ChildLicenseQuery licenseCodeList(List<String> licenseCodeList){ public ChildLicenseQuery licenseCodeList(List<String> licenseCodeList){
this.licenseCodeList = licenseCodeList; this.licenseCodeList = licenseCodeList;
return this; return this;
} }
/** /**
* 设置 法定代表人(负责人) * 设置 法定代表人(负责人)
* @param legalPersonName * @param legalPersonName
*/ */
public ChildLicenseQuery legalPersonName(String legalPersonName){ public ChildLicenseQuery legalPersonName(String legalPersonName){
setLegalPersonName(legalPersonName); setLegalPersonName(legalPersonName);
return this; return this;
} }
/** /**
* 设置 法定代表人(负责人) * 设置 法定代表人(负责人)
* @param legalPersonNameList * @param legalPersonNameList
*/ */
public ChildLicenseQuery legalPersonNameList(List<String> legalPersonNameList){ public ChildLicenseQuery legalPersonNameList(List<String> legalPersonNameList){
this.legalPersonNameList = legalPersonNameList; this.legalPersonNameList = legalPersonNameList;
return this; return this;
} }
/** /**
* 设置 统一社会信用代码 * 设置 统一社会信用代码
* @param creditCode * @param creditCode
*/ */
public ChildLicenseQuery creditCode(String creditCode){ public ChildLicenseQuery creditCode(String creditCode){
setCreditCode(creditCode); setCreditCode(creditCode);
return this; return this;
} }
/** /**
* 设置 统一社会信用代码 * 设置 统一社会信用代码
* @param creditCodeList * @param creditCodeList
*/ */
public ChildLicenseQuery creditCodeList(List<String> creditCodeList){ public ChildLicenseQuery creditCodeList(List<String> creditCodeList){
this.creditCodeList = creditCodeList; this.creditCodeList = creditCodeList;
return this; return this;
} }
/** /**
* 设置 证件二维码 * 设置 证件二维码
* @param certQRCode * @param certQRCode
*/ */
public ChildLicenseQuery certQRCode(String certQRCode){ public ChildLicenseQuery certQRCode(String certQRCode){
setCertQRCode(certQRCode); setCertQRCode(certQRCode);
return this; return this;
} }
/** /**
* 设置 证件二维码 * 设置 证件二维码
* @param certQRCodeList * @param certQRCodeList
*/ */
public ChildLicenseQuery certQRCodeList(List<String> certQRCodeList){ public ChildLicenseQuery certQRCodeList(List<String> certQRCodeList){
this.certQRCodeList = certQRCodeList; this.certQRCodeList = certQRCodeList;
return this; return this;
} }
/** /**
* 设置 制证机关 * 设置 制证机关
* @param certAuthority * @param certAuthority
*/ */
public ChildLicenseQuery certAuthority(String certAuthority){ public ChildLicenseQuery certAuthority(String certAuthority){
setCertAuthority(certAuthority); setCertAuthority(certAuthority);
return this; return this;
} }
/** /**
* 设置 制证机关 * 设置 制证机关
* @param certAuthorityList * @param certAuthorityList
*/ */
public ChildLicenseQuery certAuthorityList(List<String> certAuthorityList){ public ChildLicenseQuery certAuthorityList(List<String> certAuthorityList){
this.certAuthorityList = certAuthorityList; this.certAuthorityList = certAuthorityList;
return this; return this;
} }
/** /**
* 设置 经营场所 * 设置 经营场所
* @param businessPlace * @param businessPlace
*/ */
public ChildLicenseQuery businessPlace(String businessPlace){ public ChildLicenseQuery businessPlace(String businessPlace){
setBusinessPlace(businessPlace); setBusinessPlace(businessPlace);
return this; return this;
} }
/** /**
* 设置 经营场所 * 设置 经营场所
* @param businessPlaceList * @param businessPlaceList
*/ */
public ChildLicenseQuery businessPlaceList(List<String> businessPlaceList){ public ChildLicenseQuery businessPlaceList(List<String> businessPlaceList){
this.businessPlaceList = businessPlaceList; this.businessPlaceList = businessPlaceList;
return this; return this;
} }
/** /**
* 设置 许可项目 * 设置 许可项目
* @param licensedItems * @param licensedItems
*/ */
public ChildLicenseQuery licensedItems(String licensedItems){ public ChildLicenseQuery licensedItems(String licensedItems){
setLicensedItems(licensedItems); setLicensedItems(licensedItems);
return this; return this;
} }
/** /**
* 设置 许可项目 * 设置 许可项目
* @param licensedItemsList * @param licensedItemsList
*/ */
public ChildLicenseQuery licensedItemsList(List<String> licensedItemsList){ public ChildLicenseQuery licensedItemsList(List<String> licensedItemsList){
this.licensedItemsList = licensedItemsList; this.licensedItemsList = licensedItemsList;
return this; return this;
} }
/** /**
* 设置 正本文件名称 * 设置 正本文件名称
* @param originalFileName * @param originalFileName
*/ */
public ChildLicenseQuery originalFileName(String originalFileName){ public ChildLicenseQuery originalFileName(String originalFileName){
setOriginalFileName(originalFileName); setOriginalFileName(originalFileName);
return this; return this;
} }
/** /**
* 设置 正本文件名称 * 设置 正本文件名称
* @param originalFileNameList * @param originalFileNameList
*/ */
public ChildLicenseQuery originalFileNameList(List<String> originalFileNameList){ public ChildLicenseQuery originalFileNameList(List<String> originalFileNameList){
this.originalFileNameList = originalFileNameList; this.originalFileNameList = originalFileNameList;
return this; return this;
} }
/** /**
* 设置 正本文件相对路径地址 * 设置 正本文件相对路径地址
* @param originalFilePath * @param originalFilePath
*/ */
public ChildLicenseQuery originalFilePath(String originalFilePath){ public ChildLicenseQuery originalFilePath(String originalFilePath){
setOriginalFilePath(originalFilePath); setOriginalFilePath(originalFilePath);
return this; return this;
} }
/** /**
* 设置 正本文件相对路径地址 * 设置 正本文件相对路径地址
* @param originalFilePathList * @param originalFilePathList
*/ */
public ChildLicenseQuery originalFilePathList(List<String> originalFilePathList){ public ChildLicenseQuery originalFilePathList(List<String> originalFilePathList){
this.originalFilePathList = originalFilePathList; this.originalFilePathList = originalFilePathList;
return this; return this;
} }
/** /**
* 设置 副本文件名称 * 设置 副本文件名称
* @param copyFileName * @param copyFileName
*/ */
public ChildLicenseQuery copyFileName(String copyFileName){ public ChildLicenseQuery copyFileName(String copyFileName){
setCopyFileName(copyFileName); setCopyFileName(copyFileName);
return this; return this;
} }
/** /**
* 设置 副本文件名称 * 设置 副本文件名称
* @param copyFileNameList * @param copyFileNameList
*/ */
public ChildLicenseQuery copyFileNameList(List<String> copyFileNameList){ public ChildLicenseQuery copyFileNameList(List<String> copyFileNameList){
this.copyFileNameList = copyFileNameList; this.copyFileNameList = copyFileNameList;
return this; return this;
} }
/** /**
* 设置 副本文件相对路径地址 * 设置 副本文件相对路径地址
* @param copyFilePath * @param copyFilePath
*/ */
public ChildLicenseQuery copyFilePath(String copyFilePath){ public ChildLicenseQuery copyFilePath(String copyFilePath){
setCopyFilePath(copyFilePath); setCopyFilePath(copyFilePath);
return this; return this;
} }
/** /**
* 设置 副本文件相对路径地址 * 设置 副本文件相对路径地址
* @param copyFilePathList * @param copyFilePathList
*/ */
public ChildLicenseQuery copyFilePathList(List<String> copyFilePathList){ public ChildLicenseQuery copyFilePathList(List<String> copyFilePathList){
this.copyFilePathList = copyFilePathList; this.copyFilePathList = copyFilePathList;
return this; return this;
} }
/** /**
* 设置 简介 * 设置 简介
* @param summary * @param summary
*/ */
public ChildLicenseQuery summary(String summary){ public ChildLicenseQuery summary(String summary){
setSummary(summary); setSummary(summary);
return this; return this;
} }
/** /**
* 设置 简介 * 设置 简介
* @param summaryList * @param summaryList
*/ */
public ChildLicenseQuery summaryList(List<String> summaryList){ public ChildLicenseQuery summaryList(List<String> summaryList){
this.summaryList = summaryList; this.summaryList = summaryList;
return this; return this;
} }
/** /**
* 设置 动态表单样式 * 设置 动态表单样式
* @param formStyleContent * @param formStyleContent
*/ */
public ChildLicenseQuery formStyleContent(String formStyleContent){ public ChildLicenseQuery formStyleContent(String formStyleContent){
setFormStyleContent(formStyleContent); setFormStyleContent(formStyleContent);
return this; return this;
} }
/** /**
* 设置 动态表单样式 * 设置 动态表单样式
* @param formStyleContentList * @param formStyleContentList
*/ */
public ChildLicenseQuery formStyleContentList(List<String> formStyleContentList){ public ChildLicenseQuery formStyleContentList(List<String> formStyleContentList){
this.formStyleContentList = formStyleContentList; this.formStyleContentList = formStyleContentList;
return this; return this;
} }
/** /**
* 设置 提交的表单 * 设置 提交的表单
* @param formContent * @param formContent
*/ */
public ChildLicenseQuery formContent(String formContent){ public ChildLicenseQuery formContent(String formContent){
setFormContent(formContent); setFormContent(formContent);
return this; return this;
} }
/** /**
* 设置 提交的表单 * 设置 提交的表单
* @param formContentList * @param formContentList
*/ */
public ChildLicenseQuery formContentList(List<String> formContentList){ public ChildLicenseQuery formContentList(List<String> formContentList){
this.formContentList = formContentList; this.formContentList = formContentList;
return this; return this;
} }
/** /**
* 设置 处理状态(0.未处理,1.已处理) * 设置 处理状态(0.未处理,1.已处理)
* @param processStatus * @param processStatus
*/ */
public ChildLicenseQuery processStatus(Integer processStatus){ public ChildLicenseQuery processStatus(Integer processStatus){
setProcessStatus(processStatus); setProcessStatus(processStatus);
return this; return this;
} }
/** /**
* 设置 开始 处理状态(0.未处理,1.已处理) * 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart * @param processStatusStart
*/ */
public ChildLicenseQuery processStatusStart(Integer processStatusStart){ public ChildLicenseQuery processStatusStart(Integer processStatusStart){
this.processStatusStart = processStatusStart; this.processStatusStart = processStatusStart;
return this; return this;
} }
/** /**
* 设置 结束 处理状态(0.未处理,1.已处理) * 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd * @param processStatusEnd
*/ */
public ChildLicenseQuery processStatusEnd(Integer processStatusEnd){ public ChildLicenseQuery processStatusEnd(Integer processStatusEnd){
this.processStatusEnd = processStatusEnd; this.processStatusEnd = processStatusEnd;
return this; return this;
} }
/** /**
* 设置 增加 处理状态(0.未处理,1.已处理) * 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement * @param processStatusIncrement
*/ */
public ChildLicenseQuery processStatusIncrement(Integer processStatusIncrement){ public ChildLicenseQuery processStatusIncrement(Integer processStatusIncrement){
this.processStatusIncrement = processStatusIncrement; this.processStatusIncrement = processStatusIncrement;
return this; return this;
} }
/** /**
* 设置 处理状态(0.未处理,1.已处理) * 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList * @param processStatusList
*/ */
public ChildLicenseQuery processStatusList(List<Integer> processStatusList){ public ChildLicenseQuery processStatusList(List<Integer> processStatusList){
this.processStatusList = processStatusList; this.processStatusList = processStatusList;
return this; return this;
} }
/** /**
* 设置 处理状态(0.未处理,1.已处理) * 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList * @param processStatusNotList
*/ */
public ChildLicenseQuery processStatusNotList(List<Integer> processStatusNotList){ public ChildLicenseQuery processStatusNotList(List<Integer> processStatusNotList){
this.processStatusNotList = processStatusNotList; this.processStatusNotList = processStatusNotList;
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remark * @param remark
*/ */
public ChildLicenseQuery remark(String remark){ public ChildLicenseQuery remark(String remark){
setRemark(remark); setRemark(remark);
return this; return this;
} }
/** /**
* 设置 备注 * 设置 备注
* @param remarkList * @param remarkList
*/ */
public ChildLicenseQuery remarkList(List<String> remarkList){ public ChildLicenseQuery remarkList(List<String> remarkList){
this.remarkList = remarkList; this.remarkList = remarkList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public ChildLicenseQuery createUserId(Long createUserId){ public ChildLicenseQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public ChildLicenseQuery createUserIdStart(Long createUserIdStart){ public ChildLicenseQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public ChildLicenseQuery createUserIdEnd(Long createUserIdEnd){ public ChildLicenseQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public ChildLicenseQuery createUserIdIncrement(Long createUserIdIncrement){ public ChildLicenseQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public ChildLicenseQuery createUserIdList(List<Long> createUserIdList){ public ChildLicenseQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public ChildLicenseQuery createUserIdNotList(List<Long> createUserIdNotList){ public ChildLicenseQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public ChildLicenseQuery updateUserId(Long updateUserId){ public ChildLicenseQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public ChildLicenseQuery updateUserIdStart(Long updateUserIdStart){ public ChildLicenseQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public ChildLicenseQuery updateUserIdEnd(Long updateUserIdEnd){ public ChildLicenseQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public ChildLicenseQuery updateUserIdIncrement(Long updateUserIdIncrement){ public ChildLicenseQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public ChildLicenseQuery updateUserIdList(List<Long> updateUserIdList){ public ChildLicenseQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public ChildLicenseQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public ChildLicenseQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 联报用户
* @param reportUserId
*/
public ChildLicenseQuery reportUserId(Long reportUserId){
setReportUserId(reportUserId);
return this;
}
/**
* 设置 开始 联报用户
* @param reportUserIdStart
*/
public ChildLicenseQuery reportUserIdStart(Long reportUserIdStart){
this.reportUserIdStart = reportUserIdStart;
return this;
}
/**
* 设置 结束 联报用户
* @param reportUserIdEnd
*/
public ChildLicenseQuery reportUserIdEnd(Long reportUserIdEnd){
this.reportUserIdEnd = reportUserIdEnd;
return this;
}
/**
* 设置 增加 联报用户
* @param reportUserIdIncrement
*/
public ChildLicenseQuery reportUserIdIncrement(Long reportUserIdIncrement){
this.reportUserIdIncrement = reportUserIdIncrement;
return this;
}
/**
* 设置 联报用户
* @param reportUserIdList
*/
public ChildLicenseQuery reportUserIdList(List<Long> reportUserIdList){
this.reportUserIdList = reportUserIdList;
return this;
}
/**
* 设置 联报用户
* @param reportUserIdNotList
*/
public ChildLicenseQuery reportUserIdNotList(List<Long> reportUserIdNotList){
this.reportUserIdNotList = reportUserIdNotList;
return this;
}
/**
* 设置 联报用户名称
* @param reportUserName
*/
public ChildLicenseQuery reportUserName(String reportUserName){
setReportUserName(reportUserName);
return this;
}
/**
* 设置 联报用户名称
* @param reportUserNameList
*/
public ChildLicenseQuery reportUserNameList(List<String> reportUserNameList){
this.reportUserNameList = reportUserNameList;
return this;
}
/**
* 设置 创建用户名称
* @param createUserName
*/
public ChildLicenseQuery createUserName(String createUserName){
setCreateUserName(createUserName);
return this;
}
/**
* 设置 创建用户名称
* @param createUserNameList
*/
public ChildLicenseQuery createUserNameList(List<String> createUserNameList){
this.createUserNameList = createUserNameList;
return this;
}
/**
* 设置 更新用户名称
* @param updateUserName
*/
public ChildLicenseQuery updateUserName(String updateUserName){
setUpdateUserName(updateUserName);
return this;
}
/**
* 设置 更新用户名称
* @param updateUserNameList
*/
public ChildLicenseQuery updateUserNameList(List<String> updateUserNameList){
this.updateUserNameList = updateUserNameList;
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<ChildLicenseQuery> getOrConditionList(){ public List<ChildLicenseQuery> 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<ChildLicenseQuery> orConditionList){ public void setOrConditionList(List<ChildLicenseQuery> 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<ChildLicenseQuery> getAndConditionList(){ public List<ChildLicenseQuery> 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<ChildLicenseQuery> andConditionList){ public void setAndConditionList(List<ChildLicenseQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -19,5 +19,10 @@ public class ChildLicenseVo extends BaseEntityLong { ...@@ -19,5 +19,10 @@ public class ChildLicenseVo extends BaseEntityLong {
/** 主键ID,主键,自增长列表 */ /** 主键ID,主键,自增长列表 */
private List <Long> idList; private List <Long> idList;
/** 开始 创建时间 */
private String createTimeStart;
/** 结束 创建时间 */
private String createTimeEnd;
} }
\ No newline at end of file
...@@ -5,6 +5,8 @@ import com.mortals.framework.exception.AppException; ...@@ -5,6 +5,8 @@ import com.mortals.framework.exception.AppException;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController; import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.annotation.DataPermission; import com.mortals.xhx.annotation.DataPermission;
import com.mortals.xhx.base.system.param.service.ParamService; import com.mortals.xhx.base.system.param.service.ParamService;
import com.mortals.xhx.module.certificate.model.CertificateDocumentQuery;
import com.mortals.xhx.module.certificate.service.CertificateDocumentService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
...@@ -49,6 +51,9 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch ...@@ -49,6 +51,9 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
@Autowired @Autowired
private ParamService paramService; private ParamService paramService;
@Autowired
private CertificateDocumentService certificateDocumentService;
public ChildLicenseController() { public ChildLicenseController() {
super.setModuleDesc("行业许可子证"); super.setModuleDesc("行业许可子证");
} }
...@@ -57,6 +62,11 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch ...@@ -57,6 +62,11 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
protected void init(Map<String, Object> model, Context context) { protected void init(Map<String, Object> model, Context context) {
this.addDict(model, "legalPersonName", LegalPersonNameEnum.getEnumMap()); this.addDict(model, "legalPersonName", LegalPersonNameEnum.getEnumMap());
this.addDict(model, "processStatus", ProcessStatusEnum.getEnumMap()); this.addDict(model, "processStatus", ProcessStatusEnum.getEnumMap());
this.addDict(model,"documentId", certificateDocumentService.find(new CertificateDocumentQuery())
.stream().collect(Collectors.toMap(x->x.getId(),y->y.getDocumentName(),(o,n)->n)));
super.init(model, context); super.init(model, context);
} }
......
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