Commit 673f7664 authored by 廖旭伟's avatar 廖旭伟

Merge remote-tracking branch 'origin/master'

parents b58eb377 d2cdffbd
......@@ -31,9 +31,14 @@ CREATE TABLE `mortals_xhx_child_license` (
`formContent` mediumtext COMMENT '提交的表单',
`processStatus` tinyint(2) DEFAULT '0' COMMENT '处理状态(0.未处理,1.已处理)',
`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 '创建时间',
`createUserId` bigint(20) NOT NULL COMMENT '创建用户',
`createUserName` varchar(64) DEFAULT NULL COMMENT '创建用户名称',
`updateUserId` bigint(20) DEFAULT NULL COMMENT '更新用户',
`updateUserName` varchar(64) DEFAULT NULL COMMENT '更新用户名称',
`updateTime` datetime DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE,
KEY `siteId` (`siteId`) USING BTREE,
......@@ -43,3 +48,4 @@ CREATE TABLE `mortals_xhx_child_license` (
KEY `deptId` (`deptId`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '行业许可子证' ROW_FORMAT = Dynamic;
ALTER TABLE mortals_xhx_child_license ADD COLUMN `resolutionValue` varchar(64) DEFAULT '' COMMENT '设备分辨率' AFTER resolution;
......@@ -116,9 +116,10 @@ public class LoginController extends BaseCRUDJsonBodyMappingController<UserServi
}
@RequestMapping("logout")
public void logout(HttpServletRequest request, HttpServletResponse response) throws Exception {
public Rest<String> logout(HttpServletRequest request, HttpServletResponse response) throws Exception {
recordSysLog(request, "退出登录");
super.removeCurrUser(request);
return Rest.ok("退出登录成功");
}
@RequestMapping("index")
......
package com.mortals.xhx.module.certificate.web;
import com.mortals.framework.exception.AppException;
import com.mortals.framework.model.Context;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.base.system.param.service.ParamService;
......@@ -10,6 +11,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.Map;
/**
*
......@@ -36,6 +38,12 @@ public class CertificateDocumentController extends BaseCRUDJsonBodyMappingContro
}
@Override
protected void doListAfter(CertificateDocumentEntity query, List<CertificateDocumentEntity> list, Context context) throws AppException {
list.forEach(item->{
item.setFormContent("");
});
super.doListAfter(query, list, context);
}
}
\ No newline at end of file
......@@ -11,126 +11,146 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.child.model.vo.ChildLicenseVo;
import lombok.Data;
/**
* 行业许可子证实体对象
*
* @author zxfei
* @date 2024-07-28
*/
* 行业许可子证实体对象
*
* @author zxfei
* @date 2024-07-28
*/
@Data
public class ChildLicenseEntity extends ChildLicenseVo {
private static final long serialVersionUID = 1L;
/**
* 站点Id
*/
* 站点Id
*/
private Long siteId;
/**
* 站点名称
*/
* 站点名称
*/
private String siteName;
/**
* 目录id
*/
* 目录id
*/
private Long catalogId;
/**
* 目录名称
*/
* 目录名称
*/
private String catalogName;
/**
* 申请Id
*/
* 申请Id
*/
private Long applyId;
/**
* 子证配置Id
*/
* 子证配置Id
*/
private Long documentId;
/**
* 子证名称
*/
* 子证名称
*/
private String documentName;
/**
* 部门id
*/
* 部门id
*/
private Long deptId;
/**
* 部门名称
*/
* 部门名称
*/
private String deptName;
/**
* 市场主体名称
*/
* 市场主体名称
*/
private String marketEntityName;
/**
* 许可证编号
*/
* 许可证编号
*/
private String licenseCode;
/**
* 法定代表人(负责人)
*/
* 法定代表人(负责人)
*/
private String legalPersonName;
/**
* 统一社会信用代码
*/
* 统一社会信用代码
*/
private String creditCode;
/**
* 制证日期
*/
* 制证日期
*/
private Date productLicenseTime;
/**
* 证件二维码
*/
* 证件二维码
*/
private String certQRCode;
/**
* 制证机关
*/
* 制证机关
*/
private String certAuthority;
/**
* 经营场所
*/
* 经营场所
*/
private String businessPlace;
/**
* 许可项目
*/
* 许可项目
*/
private String licensedItems;
/**
* 正本文件名称
*/
* 正本文件名称
*/
private String originalFileName;
/**
* 正本文件相对路径地址
*/
* 正本文件相对路径地址
*/
private String originalFilePath;
/**
* 副本文件名称
*/
* 副本文件名称
*/
private String copyFileName;
/**
* 副本文件相对路径地址
*/
* 副本文件相对路径地址
*/
private String copyFilePath;
/**
* 简介
*/
* 简介
*/
private String summary;
/**
* 动态表单样式
*/
* 动态表单样式
*/
private String formStyleContent;
/**
* 提交的表单
*/
* 提交的表单
*/
private String formContent;
/**
* 处理状态(0.未处理,1.已处理)
*/
* 处理状态(0.未处理,1.已处理)
*/
private Integer processStatus;
/**
* 备注
*/
* 备注
*/
private String remark;
/**
* 联报用户
*/
private Long reportUserId;
/**
* 联报用户名称
*/
private String reportUserName;
/**
* 联报时间
*/
private Date reportTime;
/**
* 创建用户名称
*/
private String createUserName;
/**
* 更新用户名称
*/
private String updateUserName;
@Override
public int hashCode() {
return this.getId().hashCode();
return this.getId().hashCode();
}
@Override
public boolean equals(Object obj) {
......@@ -138,39 +158,44 @@ public class ChildLicenseEntity extends ChildLicenseVo {
if (obj instanceof ChildLicenseEntity) {
ChildLicenseEntity tmp = (ChildLicenseEntity) obj;
if (this.getId() == tmp.getId()) {
return true;
return true;
}
}
return false;
}
public void initAttrValue(){
this.siteId = null;
this.siteName = "";
this.catalogId = null;
this.catalogName = "";
this.applyId = null;
this.documentId = null;
this.documentName = "";
this.deptId = null;
this.deptName = "";
this.marketEntityName = "";
this.licenseCode = "";
this.legalPersonName = "";
this.creditCode = "";
this.productLicenseTime = null;
this.certQRCode = "";
this.certAuthority = "";
this.businessPlace = "";
this.licensedItems = "";
this.originalFileName = "";
this.originalFilePath = "";
this.copyFileName = "";
this.copyFilePath = "";
this.summary = "";
this.formStyleContent = "";
this.formContent = "";
this.processStatus = 0;
this.remark = "";
this.siteId = null;
this.siteName = "";
this.catalogId = null;
this.catalogName = "";
this.applyId = null;
this.documentId = null;
this.documentName = "";
this.deptId = null;
this.deptName = "";
this.marketEntityName = "";
this.licenseCode = "";
this.legalPersonName = "";
this.creditCode = "";
this.productLicenseTime = null;
this.certQRCode = "";
this.certAuthority = "";
this.businessPlace = "";
this.licensedItems = "";
this.originalFileName = "";
this.originalFilePath = "";
this.copyFileName = "";
this.copyFilePath = "";
this.summary = "";
this.formStyleContent = "";
this.formContent = "";
this.processStatus = 0;
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;
import java.util.List;
import com.mortals.xhx.module.child.model.ChildLicenseEntity;
/**
* 行业许可子证查询对象
*
* @author zxfei
* @date 2024-07-28
*/
* 行业许可子证查询对象
*
* @author zxfei
* @date 2024-07-28
*/
public class ChildLicenseQuery extends ChildLicenseEntity {
/** 开始 主键ID,主键,自增长 */
private Long idStart;
......@@ -263,6 +263,42 @@ public class ChildLicenseQuery extends ChildLicenseEntity {
/** 结束 更新时间 */
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) */
private List<ChildLicenseQuery> orConditionList;
......@@ -272,2367 +308,2688 @@ public class ChildLicenseQuery extends ChildLicenseEntity {
public ChildLicenseQuery(){}
/**
* 获取 开始 主键ID,主键,自增长
* @return idStart
*/
* 获取 开始 主键ID,主键,自增长
* @return idStart
*/
public Long getIdStart(){
return this.idStart;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
public void setIdStart(Long idStart){
this.idStart = idStart;
}
/**
* 获取 结束 主键ID,主键,自增长
* @return $idEnd
*/
* 获取 结束 主键ID,主键,自增长
* @return $idEnd
*/
public Long getIdEnd(){
return this.idEnd;
}
/**
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public void setIdEnd(Long idEnd){
this.idEnd = idEnd;
}
/**
* 获取 增加 主键ID,主键,自增长
* @return idIncrement
*/
* 获取 增加 主键ID,主键,自增长
* @return idIncrement
*/
public Long getIdIncrement(){
return this.idIncrement;
}
/**
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement;
}
/**
* 获取 主键ID,主键,自增长
* @return idList
*/
* 获取 主键ID,主键,自增长
* @return idList
*/
public List<Long> getIdList(){
return this.idList;
}
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
* 设置 主键ID,主键,自增长
* @param idList
*/
public void setIdList(List<Long> idList){
this.idList = idList;
}
/**
* 获取 主键ID,主键,自增长
* @return idNotList
*/
* 获取 主键ID,主键,自增长
* @return idNotList
*/
public List<Long> getIdNotList(){
return this.idNotList;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public void setIdNotList(List<Long> idNotList){
this.idNotList = idNotList;
}
/**
* 获取 开始 站点Id
* @return siteIdStart
*/
* 获取 开始 站点Id
* @return siteIdStart
*/
public Long getSiteIdStart(){
return this.siteIdStart;
}
/**
* 设置 开始 站点Id
* @param siteIdStart
*/
* 设置 开始 站点Id
* @param siteIdStart
*/
public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
}
/**
* 获取 结束 站点Id
* @return $siteIdEnd
*/
* 获取 结束 站点Id
* @return $siteIdEnd
*/
public Long getSiteIdEnd(){
return this.siteIdEnd;
}
/**
* 设置 结束 站点Id
* @param siteIdEnd
*/
* 设置 结束 站点Id
* @param siteIdEnd
*/
public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
}
/**
* 获取 增加 站点Id
* @return siteIdIncrement
*/
* 获取 增加 站点Id
* @return siteIdIncrement
*/
public Long getSiteIdIncrement(){
return this.siteIdIncrement;
}
/**
* 设置 增加 站点Id
* @param siteIdIncrement
*/
* 设置 增加 站点Id
* @param siteIdIncrement
*/
public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
}
/**
* 获取 站点Id
* @return siteIdList
*/
* 获取 站点Id
* @return siteIdList
*/
public List<Long> getSiteIdList(){
return this.siteIdList;
}
/**
* 设置 站点Id
* @param siteIdList
*/
* 设置 站点Id
* @param siteIdList
*/
public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
}
/**
* 获取 站点Id
* @return siteIdNotList
*/
* 获取 站点Id
* @return siteIdNotList
*/
public List<Long> getSiteIdNotList(){
return this.siteIdNotList;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
* 设置 站点Id
* @param siteIdNotList
*/
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
/**
* 获取 站点名称
* @return siteNameList
*/
* 获取 站点名称
* @return siteNameList
*/
public List<String> getSiteNameList(){
return this.siteNameList;
}
/**
* 设置 站点名称
* @param siteNameList
*/
* 设置 站点名称
* @param siteNameList
*/
public void setSiteNameList(List<String> siteNameList){
this.siteNameList = siteNameList;
}
/**
* 获取 站点名称
* @return siteNameNotList
*/
* 获取 站点名称
* @return siteNameNotList
*/
public List<String> getSiteNameNotList(){
return this.siteNameNotList;
}
/**
* 设置 站点名称
* @param siteNameNotList
*/
* 设置 站点名称
* @param siteNameNotList
*/
public void setSiteNameNotList(List<String> siteNameNotList){
this.siteNameNotList = siteNameNotList;
}
/**
* 获取 开始 目录id
* @return catalogIdStart
*/
* 获取 开始 目录id
* @return catalogIdStart
*/
public Long getCatalogIdStart(){
return this.catalogIdStart;
}
/**
* 设置 开始 目录id
* @param catalogIdStart
*/
* 设置 开始 目录id
* @param catalogIdStart
*/
public void setCatalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart;
}
/**
* 获取 结束 目录id
* @return $catalogIdEnd
*/
* 获取 结束 目录id
* @return $catalogIdEnd
*/
public Long getCatalogIdEnd(){
return this.catalogIdEnd;
}
/**
* 设置 结束 目录id
* @param catalogIdEnd
*/
* 设置 结束 目录id
* @param catalogIdEnd
*/
public void setCatalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd;
}
/**
* 获取 增加 目录id
* @return catalogIdIncrement
*/
* 获取 增加 目录id
* @return catalogIdIncrement
*/
public Long getCatalogIdIncrement(){
return this.catalogIdIncrement;
}
/**
* 设置 增加 目录id
* @param catalogIdIncrement
*/
* 设置 增加 目录id
* @param catalogIdIncrement
*/
public void setCatalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement;
}
/**
* 获取 目录id
* @return catalogIdList
*/
* 获取 目录id
* @return catalogIdList
*/
public List<Long> getCatalogIdList(){
return this.catalogIdList;
}
/**
* 设置 目录id
* @param catalogIdList
*/
* 设置 目录id
* @param catalogIdList
*/
public void setCatalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList;
}
/**
* 获取 目录id
* @return catalogIdNotList
*/
* 获取 目录id
* @return catalogIdNotList
*/
public List<Long> getCatalogIdNotList(){
return this.catalogIdNotList;
}
/**
* 设置 目录id
* @param catalogIdNotList
*/
* 设置 目录id
* @param catalogIdNotList
*/
public void setCatalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList;
}
/**
* 获取 目录名称
* @return catalogNameList
*/
* 获取 目录名称
* @return catalogNameList
*/
public List<String> getCatalogNameList(){
return this.catalogNameList;
}
/**
* 设置 目录名称
* @param catalogNameList
*/
* 设置 目录名称
* @param catalogNameList
*/
public void setCatalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList;
}
/**
* 获取 目录名称
* @return catalogNameNotList
*/
* 获取 目录名称
* @return catalogNameNotList
*/
public List<String> getCatalogNameNotList(){
return this.catalogNameNotList;
}
/**
* 设置 目录名称
* @param catalogNameNotList
*/
* 设置 目录名称
* @param catalogNameNotList
*/
public void setCatalogNameNotList(List<String> catalogNameNotList){
this.catalogNameNotList = catalogNameNotList;
}
/**
* 获取 开始 申请Id
* @return applyIdStart
*/
* 获取 开始 申请Id
* @return applyIdStart
*/
public Long getApplyIdStart(){
return this.applyIdStart;
}
/**
* 设置 开始 申请Id
* @param applyIdStart
*/
* 设置 开始 申请Id
* @param applyIdStart
*/
public void setApplyIdStart(Long applyIdStart){
this.applyIdStart = applyIdStart;
}
/**
* 获取 结束 申请Id
* @return $applyIdEnd
*/
* 获取 结束 申请Id
* @return $applyIdEnd
*/
public Long getApplyIdEnd(){
return this.applyIdEnd;
}
/**
* 设置 结束 申请Id
* @param applyIdEnd
*/
* 设置 结束 申请Id
* @param applyIdEnd
*/
public void setApplyIdEnd(Long applyIdEnd){
this.applyIdEnd = applyIdEnd;
}
/**
* 获取 增加 申请Id
* @return applyIdIncrement
*/
* 获取 增加 申请Id
* @return applyIdIncrement
*/
public Long getApplyIdIncrement(){
return this.applyIdIncrement;
}
/**
* 设置 增加 申请Id
* @param applyIdIncrement
*/
* 设置 增加 申请Id
* @param applyIdIncrement
*/
public void setApplyIdIncrement(Long applyIdIncrement){
this.applyIdIncrement = applyIdIncrement;
}
/**
* 获取 申请Id
* @return applyIdList
*/
* 获取 申请Id
* @return applyIdList
*/
public List<Long> getApplyIdList(){
return this.applyIdList;
}
/**
* 设置 申请Id
* @param applyIdList
*/
* 设置 申请Id
* @param applyIdList
*/
public void setApplyIdList(List<Long> applyIdList){
this.applyIdList = applyIdList;
}
/**
* 获取 申请Id
* @return applyIdNotList
*/
* 获取 申请Id
* @return applyIdNotList
*/
public List<Long> getApplyIdNotList(){
return this.applyIdNotList;
}
/**
* 设置 申请Id
* @param applyIdNotList
*/
* 设置 申请Id
* @param applyIdNotList
*/
public void setApplyIdNotList(List<Long> applyIdNotList){
this.applyIdNotList = applyIdNotList;
}
/**
* 获取 开始 子证配置Id
* @return documentIdStart
*/
* 获取 开始 子证配置Id
* @return documentIdStart
*/
public Long getDocumentIdStart(){
return this.documentIdStart;
}
/**
* 设置 开始 子证配置Id
* @param documentIdStart
*/
* 设置 开始 子证配置Id
* @param documentIdStart
*/
public void setDocumentIdStart(Long documentIdStart){
this.documentIdStart = documentIdStart;
}
/**
* 获取 结束 子证配置Id
* @return $documentIdEnd
*/
* 获取 结束 子证配置Id
* @return $documentIdEnd
*/
public Long getDocumentIdEnd(){
return this.documentIdEnd;
}
/**
* 设置 结束 子证配置Id
* @param documentIdEnd
*/
* 设置 结束 子证配置Id
* @param documentIdEnd
*/
public void setDocumentIdEnd(Long documentIdEnd){
this.documentIdEnd = documentIdEnd;
}
/**
* 获取 增加 子证配置Id
* @return documentIdIncrement
*/
* 获取 增加 子证配置Id
* @return documentIdIncrement
*/
public Long getDocumentIdIncrement(){
return this.documentIdIncrement;
}
/**
* 设置 增加 子证配置Id
* @param documentIdIncrement
*/
* 设置 增加 子证配置Id
* @param documentIdIncrement
*/
public void setDocumentIdIncrement(Long documentIdIncrement){
this.documentIdIncrement = documentIdIncrement;
}
/**
* 获取 子证配置Id
* @return documentIdList
*/
* 获取 子证配置Id
* @return documentIdList
*/
public List<Long> getDocumentIdList(){
return this.documentIdList;
}
/**
* 设置 子证配置Id
* @param documentIdList
*/
* 设置 子证配置Id
* @param documentIdList
*/
public void setDocumentIdList(List<Long> documentIdList){
this.documentIdList = documentIdList;
}
/**
* 获取 子证配置Id
* @return documentIdNotList
*/
* 获取 子证配置Id
* @return documentIdNotList
*/
public List<Long> getDocumentIdNotList(){
return this.documentIdNotList;
}
/**
* 设置 子证配置Id
* @param documentIdNotList
*/
* 设置 子证配置Id
* @param documentIdNotList
*/
public void setDocumentIdNotList(List<Long> documentIdNotList){
this.documentIdNotList = documentIdNotList;
}
/**
* 获取 子证名称
* @return documentNameList
*/
* 获取 子证名称
* @return documentNameList
*/
public List<String> getDocumentNameList(){
return this.documentNameList;
}
/**
* 设置 子证名称
* @param documentNameList
*/
* 设置 子证名称
* @param documentNameList
*/
public void setDocumentNameList(List<String> documentNameList){
this.documentNameList = documentNameList;
}
/**
* 获取 子证名称
* @return documentNameNotList
*/
* 获取 子证名称
* @return documentNameNotList
*/
public List<String> getDocumentNameNotList(){
return this.documentNameNotList;
}
/**
* 设置 子证名称
* @param documentNameNotList
*/
* 设置 子证名称
* @param documentNameNotList
*/
public void setDocumentNameNotList(List<String> documentNameNotList){
this.documentNameNotList = documentNameNotList;
}
/**
* 获取 开始 部门id
* @return deptIdStart
*/
* 获取 开始 部门id
* @return deptIdStart
*/
public Long getDeptIdStart(){
return this.deptIdStart;
}
/**
* 设置 开始 部门id
* @param deptIdStart
*/
* 设置 开始 部门id
* @param deptIdStart
*/
public void setDeptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart;
}
/**
* 获取 结束 部门id
* @return $deptIdEnd
*/
* 获取 结束 部门id
* @return $deptIdEnd
*/
public Long getDeptIdEnd(){
return this.deptIdEnd;
}
/**
* 设置 结束 部门id
* @param deptIdEnd
*/
* 设置 结束 部门id
* @param deptIdEnd
*/
public void setDeptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd;
}
/**
* 获取 增加 部门id
* @return deptIdIncrement
*/
* 获取 增加 部门id
* @return deptIdIncrement
*/
public Long getDeptIdIncrement(){
return this.deptIdIncrement;
}
/**
* 设置 增加 部门id
* @param deptIdIncrement
*/
* 设置 增加 部门id
* @param deptIdIncrement
*/
public void setDeptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement;
}
/**
* 获取 部门id
* @return deptIdList
*/
* 获取 部门id
* @return deptIdList
*/
public List<Long> getDeptIdList(){
return this.deptIdList;
}
/**
* 设置 部门id
* @param deptIdList
*/
* 设置 部门id
* @param deptIdList
*/
public void setDeptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList;
}
/**
* 获取 部门id
* @return deptIdNotList
*/
* 获取 部门id
* @return deptIdNotList
*/
public List<Long> getDeptIdNotList(){
return this.deptIdNotList;
}
/**
* 设置 部门id
* @param deptIdNotList
*/
* 设置 部门id
* @param deptIdNotList
*/
public void setDeptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList;
}
/**
* 获取 部门名称
* @return deptNameList
*/
* 获取 部门名称
* @return deptNameList
*/
public List<String> getDeptNameList(){
return this.deptNameList;
}
/**
* 设置 部门名称
* @param deptNameList
*/
* 设置 部门名称
* @param deptNameList
*/
public void setDeptNameList(List<String> deptNameList){
this.deptNameList = deptNameList;
}
/**
* 获取 部门名称
* @return deptNameNotList
*/
* 获取 部门名称
* @return deptNameNotList
*/
public List<String> getDeptNameNotList(){
return this.deptNameNotList;
}
/**
* 设置 部门名称
* @param deptNameNotList
*/
* 设置 部门名称
* @param deptNameNotList
*/
public void setDeptNameNotList(List<String> deptNameNotList){
this.deptNameNotList = deptNameNotList;
}
/**
* 获取 市场主体名称
* @return marketEntityNameList
*/
* 获取 市场主体名称
* @return marketEntityNameList
*/
public List<String> getMarketEntityNameList(){
return this.marketEntityNameList;
}
/**
* 设置 市场主体名称
* @param marketEntityNameList
*/
* 设置 市场主体名称
* @param marketEntityNameList
*/
public void setMarketEntityNameList(List<String> marketEntityNameList){
this.marketEntityNameList = marketEntityNameList;
}
/**
* 获取 市场主体名称
* @return marketEntityNameNotList
*/
* 获取 市场主体名称
* @return marketEntityNameNotList
*/
public List<String> getMarketEntityNameNotList(){
return this.marketEntityNameNotList;
}
/**
* 设置 市场主体名称
* @param marketEntityNameNotList
*/
* 设置 市场主体名称
* @param marketEntityNameNotList
*/
public void setMarketEntityNameNotList(List<String> marketEntityNameNotList){
this.marketEntityNameNotList = marketEntityNameNotList;
}
/**
* 获取 许可证编号
* @return licenseCodeList
*/
* 获取 许可证编号
* @return licenseCodeList
*/
public List<String> getLicenseCodeList(){
return this.licenseCodeList;
}
/**
* 设置 许可证编号
* @param licenseCodeList
*/
* 设置 许可证编号
* @param licenseCodeList
*/
public void setLicenseCodeList(List<String> licenseCodeList){
this.licenseCodeList = licenseCodeList;
}
/**
* 获取 许可证编号
* @return licenseCodeNotList
*/
* 获取 许可证编号
* @return licenseCodeNotList
*/
public List<String> getLicenseCodeNotList(){
return this.licenseCodeNotList;
}
/**
* 设置 许可证编号
* @param licenseCodeNotList
*/
* 设置 许可证编号
* @param licenseCodeNotList
*/
public void setLicenseCodeNotList(List<String> licenseCodeNotList){
this.licenseCodeNotList = licenseCodeNotList;
}
/**
* 获取 法定代表人(负责人)
* @return legalPersonNameList
*/
* 获取 法定代表人(负责人)
* @return legalPersonNameList
*/
public List<String> getLegalPersonNameList(){
return this.legalPersonNameList;
}
/**
* 设置 法定代表人(负责人)
* @param legalPersonNameList
*/
* 设置 法定代表人(负责人)
* @param legalPersonNameList
*/
public void setLegalPersonNameList(List<String> legalPersonNameList){
this.legalPersonNameList = legalPersonNameList;
}
/**
* 获取 法定代表人(负责人)
* @return legalPersonNameNotList
*/
* 获取 法定代表人(负责人)
* @return legalPersonNameNotList
*/
public List<String> getLegalPersonNameNotList(){
return this.legalPersonNameNotList;
}
/**
* 设置 法定代表人(负责人)
* @param legalPersonNameNotList
*/
* 设置 法定代表人(负责人)
* @param legalPersonNameNotList
*/
public void setLegalPersonNameNotList(List<String> legalPersonNameNotList){
this.legalPersonNameNotList = legalPersonNameNotList;
}
/**
* 获取 统一社会信用代码
* @return creditCodeList
*/
* 获取 统一社会信用代码
* @return creditCodeList
*/
public List<String> getCreditCodeList(){
return this.creditCodeList;
}
/**
* 设置 统一社会信用代码
* @param creditCodeList
*/
* 设置 统一社会信用代码
* @param creditCodeList
*/
public void setCreditCodeList(List<String> creditCodeList){
this.creditCodeList = creditCodeList;
}
/**
* 获取 统一社会信用代码
* @return creditCodeNotList
*/
* 获取 统一社会信用代码
* @return creditCodeNotList
*/
public List<String> getCreditCodeNotList(){
return this.creditCodeNotList;
}
/**
* 设置 统一社会信用代码
* @param creditCodeNotList
*/
* 设置 统一社会信用代码
* @param creditCodeNotList
*/
public void setCreditCodeNotList(List<String> creditCodeNotList){
this.creditCodeNotList = creditCodeNotList;
}
/**
* 获取 开始 制证日期
* @return productLicenseTimeStart
*/
* 获取 开始 制证日期
* @return productLicenseTimeStart
*/
public String getProductLicenseTimeStart(){
return this.productLicenseTimeStart;
}
/**
* 设置 开始 制证日期
* @param productLicenseTimeStart
*/
* 设置 开始 制证日期
* @param productLicenseTimeStart
*/
public void setProductLicenseTimeStart(String productLicenseTimeStart){
this.productLicenseTimeStart = productLicenseTimeStart;
}
/**
* 获取 结束 制证日期
* @return productLicenseTimeEnd
*/
* 获取 结束 制证日期
* @return productLicenseTimeEnd
*/
public String getProductLicenseTimeEnd(){
return this.productLicenseTimeEnd;
}
/**
* 设置 结束 制证日期
* @param productLicenseTimeEnd
*/
* 设置 结束 制证日期
* @param productLicenseTimeEnd
*/
public void setProductLicenseTimeEnd(String productLicenseTimeEnd){
this.productLicenseTimeEnd = productLicenseTimeEnd;
}
/**
* 获取 证件二维码
* @return certQRCodeList
*/
* 获取 证件二维码
* @return certQRCodeList
*/
public List<String> getCertQRCodeList(){
return this.certQRCodeList;
}
/**
* 设置 证件二维码
* @param certQRCodeList
*/
* 设置 证件二维码
* @param certQRCodeList
*/
public void setCertQRCodeList(List<String> certQRCodeList){
this.certQRCodeList = certQRCodeList;
}
/**
* 获取 证件二维码
* @return certQRCodeNotList
*/
* 获取 证件二维码
* @return certQRCodeNotList
*/
public List<String> getCertQRCodeNotList(){
return this.certQRCodeNotList;
}
/**
* 设置 证件二维码
* @param certQRCodeNotList
*/
* 设置 证件二维码
* @param certQRCodeNotList
*/
public void setCertQRCodeNotList(List<String> certQRCodeNotList){
this.certQRCodeNotList = certQRCodeNotList;
}
/**
* 获取 制证机关
* @return certAuthorityList
*/
* 获取 制证机关
* @return certAuthorityList
*/
public List<String> getCertAuthorityList(){
return this.certAuthorityList;
}
/**
* 设置 制证机关
* @param certAuthorityList
*/
* 设置 制证机关
* @param certAuthorityList
*/
public void setCertAuthorityList(List<String> certAuthorityList){
this.certAuthorityList = certAuthorityList;
}
/**
* 获取 制证机关
* @return certAuthorityNotList
*/
* 获取 制证机关
* @return certAuthorityNotList
*/
public List<String> getCertAuthorityNotList(){
return this.certAuthorityNotList;
}
/**
* 设置 制证机关
* @param certAuthorityNotList
*/
* 设置 制证机关
* @param certAuthorityNotList
*/
public void setCertAuthorityNotList(List<String> certAuthorityNotList){
this.certAuthorityNotList = certAuthorityNotList;
}
/**
* 获取 经营场所
* @return businessPlaceList
*/
* 获取 经营场所
* @return businessPlaceList
*/
public List<String> getBusinessPlaceList(){
return this.businessPlaceList;
}
/**
* 设置 经营场所
* @param businessPlaceList
*/
* 设置 经营场所
* @param businessPlaceList
*/
public void setBusinessPlaceList(List<String> businessPlaceList){
this.businessPlaceList = businessPlaceList;
}
/**
* 获取 经营场所
* @return businessPlaceNotList
*/
* 获取 经营场所
* @return businessPlaceNotList
*/
public List<String> getBusinessPlaceNotList(){
return this.businessPlaceNotList;
}
/**
* 设置 经营场所
* @param businessPlaceNotList
*/
* 设置 经营场所
* @param businessPlaceNotList
*/
public void setBusinessPlaceNotList(List<String> businessPlaceNotList){
this.businessPlaceNotList = businessPlaceNotList;
}
/**
* 获取 许可项目
* @return licensedItemsList
*/
* 获取 许可项目
* @return licensedItemsList
*/
public List<String> getLicensedItemsList(){
return this.licensedItemsList;
}
/**
* 设置 许可项目
* @param licensedItemsList
*/
* 设置 许可项目
* @param licensedItemsList
*/
public void setLicensedItemsList(List<String> licensedItemsList){
this.licensedItemsList = licensedItemsList;
}
/**
* 获取 许可项目
* @return licensedItemsNotList
*/
* 获取 许可项目
* @return licensedItemsNotList
*/
public List<String> getLicensedItemsNotList(){
return this.licensedItemsNotList;
}
/**
* 设置 许可项目
* @param licensedItemsNotList
*/
* 设置 许可项目
* @param licensedItemsNotList
*/
public void setLicensedItemsNotList(List<String> licensedItemsNotList){
this.licensedItemsNotList = licensedItemsNotList;
}
/**
* 获取 正本文件名称
* @return originalFileNameList
*/
* 获取 正本文件名称
* @return originalFileNameList
*/
public List<String> getOriginalFileNameList(){
return this.originalFileNameList;
}
/**
* 设置 正本文件名称
* @param originalFileNameList
*/
* 设置 正本文件名称
* @param originalFileNameList
*/
public void setOriginalFileNameList(List<String> originalFileNameList){
this.originalFileNameList = originalFileNameList;
}
/**
* 获取 正本文件名称
* @return originalFileNameNotList
*/
* 获取 正本文件名称
* @return originalFileNameNotList
*/
public List<String> getOriginalFileNameNotList(){
return this.originalFileNameNotList;
}
/**
* 设置 正本文件名称
* @param originalFileNameNotList
*/
* 设置 正本文件名称
* @param originalFileNameNotList
*/
public void setOriginalFileNameNotList(List<String> originalFileNameNotList){
this.originalFileNameNotList = originalFileNameNotList;
}
/**
* 获取 正本文件相对路径地址
* @return originalFilePathList
*/
* 获取 正本文件相对路径地址
* @return originalFilePathList
*/
public List<String> getOriginalFilePathList(){
return this.originalFilePathList;
}
/**
* 设置 正本文件相对路径地址
* @param originalFilePathList
*/
* 设置 正本文件相对路径地址
* @param originalFilePathList
*/
public void setOriginalFilePathList(List<String> originalFilePathList){
this.originalFilePathList = originalFilePathList;
}
/**
* 获取 正本文件相对路径地址
* @return originalFilePathNotList
*/
* 获取 正本文件相对路径地址
* @return originalFilePathNotList
*/
public List<String> getOriginalFilePathNotList(){
return this.originalFilePathNotList;
}
/**
* 设置 正本文件相对路径地址
* @param originalFilePathNotList
*/
* 设置 正本文件相对路径地址
* @param originalFilePathNotList
*/
public void setOriginalFilePathNotList(List<String> originalFilePathNotList){
this.originalFilePathNotList = originalFilePathNotList;
}
/**
* 获取 副本文件名称
* @return copyFileNameList
*/
* 获取 副本文件名称
* @return copyFileNameList
*/
public List<String> getCopyFileNameList(){
return this.copyFileNameList;
}
/**
* 设置 副本文件名称
* @param copyFileNameList
*/
* 设置 副本文件名称
* @param copyFileNameList
*/
public void setCopyFileNameList(List<String> copyFileNameList){
this.copyFileNameList = copyFileNameList;
}
/**
* 获取 副本文件名称
* @return copyFileNameNotList
*/
* 获取 副本文件名称
* @return copyFileNameNotList
*/
public List<String> getCopyFileNameNotList(){
return this.copyFileNameNotList;
}
/**
* 设置 副本文件名称
* @param copyFileNameNotList
*/
* 设置 副本文件名称
* @param copyFileNameNotList
*/
public void setCopyFileNameNotList(List<String> copyFileNameNotList){
this.copyFileNameNotList = copyFileNameNotList;
}
/**
* 获取 副本文件相对路径地址
* @return copyFilePathList
*/
* 获取 副本文件相对路径地址
* @return copyFilePathList
*/
public List<String> getCopyFilePathList(){
return this.copyFilePathList;
}
/**
* 设置 副本文件相对路径地址
* @param copyFilePathList
*/
* 设置 副本文件相对路径地址
* @param copyFilePathList
*/
public void setCopyFilePathList(List<String> copyFilePathList){
this.copyFilePathList = copyFilePathList;
}
/**
* 获取 副本文件相对路径地址
* @return copyFilePathNotList
*/
* 获取 副本文件相对路径地址
* @return copyFilePathNotList
*/
public List<String> getCopyFilePathNotList(){
return this.copyFilePathNotList;
}
/**
* 设置 副本文件相对路径地址
* @param copyFilePathNotList
*/
* 设置 副本文件相对路径地址
* @param copyFilePathNotList
*/
public void setCopyFilePathNotList(List<String> copyFilePathNotList){
this.copyFilePathNotList = copyFilePathNotList;
}
/**
* 获取 简介
* @return summaryList
*/
* 获取 简介
* @return summaryList
*/
public List<String> getSummaryList(){
return this.summaryList;
}
/**
* 设置 简介
* @param summaryList
*/
* 设置 简介
* @param summaryList
*/
public void setSummaryList(List<String> summaryList){
this.summaryList = summaryList;
}
/**
* 获取 简介
* @return summaryNotList
*/
* 获取 简介
* @return summaryNotList
*/
public List<String> getSummaryNotList(){
return this.summaryNotList;
}
/**
* 设置 简介
* @param summaryNotList
*/
* 设置 简介
* @param summaryNotList
*/
public void setSummaryNotList(List<String> summaryNotList){
this.summaryNotList = summaryNotList;
}
/**
* 获取 动态表单样式
* @return formStyleContentList
*/
* 获取 动态表单样式
* @return formStyleContentList
*/
public List<String> getFormStyleContentList(){
return this.formStyleContentList;
}
/**
* 设置 动态表单样式
* @param formStyleContentList
*/
* 设置 动态表单样式
* @param formStyleContentList
*/
public void setFormStyleContentList(List<String> formStyleContentList){
this.formStyleContentList = formStyleContentList;
}
/**
* 获取 动态表单样式
* @return formStyleContentNotList
*/
* 获取 动态表单样式
* @return formStyleContentNotList
*/
public List<String> getFormStyleContentNotList(){
return this.formStyleContentNotList;
}
/**
* 设置 动态表单样式
* @param formStyleContentNotList
*/
* 设置 动态表单样式
* @param formStyleContentNotList
*/
public void setFormStyleContentNotList(List<String> formStyleContentNotList){
this.formStyleContentNotList = formStyleContentNotList;
}
/**
* 获取 提交的表单
* @return formContentList
*/
* 获取 提交的表单
* @return formContentList
*/
public List<String> getFormContentList(){
return this.formContentList;
}
/**
* 设置 提交的表单
* @param formContentList
*/
* 设置 提交的表单
* @param formContentList
*/
public void setFormContentList(List<String> formContentList){
this.formContentList = formContentList;
}
/**
* 获取 提交的表单
* @return formContentNotList
*/
* 获取 提交的表单
* @return formContentNotList
*/
public List<String> getFormContentNotList(){
return this.formContentNotList;
}
/**
* 设置 提交的表单
* @param formContentNotList
*/
* 设置 提交的表单
* @param formContentNotList
*/
public void setFormContentNotList(List<String> formContentNotList){
this.formContentNotList = formContentNotList;
}
/**
* 获取 开始 处理状态(0.未处理,1.已处理)
* @return processStatusStart
*/
* 获取 开始 处理状态(0.未处理,1.已处理)
* @return processStatusStart
*/
public Integer getProcessStatusStart(){
return this.processStatusStart;
}
/**
* 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart
*/
* 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart
*/
public void setProcessStatusStart(Integer processStatusStart){
this.processStatusStart = processStatusStart;
}
/**
* 获取 结束 处理状态(0.未处理,1.已处理)
* @return $processStatusEnd
*/
* 获取 结束 处理状态(0.未处理,1.已处理)
* @return $processStatusEnd
*/
public Integer getProcessStatusEnd(){
return this.processStatusEnd;
}
/**
* 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd
*/
* 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd
*/
public void setProcessStatusEnd(Integer processStatusEnd){
this.processStatusEnd = processStatusEnd;
}
/**
* 获取 增加 处理状态(0.未处理,1.已处理)
* @return processStatusIncrement
*/
* 获取 增加 处理状态(0.未处理,1.已处理)
* @return processStatusIncrement
*/
public Integer getProcessStatusIncrement(){
return this.processStatusIncrement;
}
/**
* 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement
*/
* 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement
*/
public void setProcessStatusIncrement(Integer processStatusIncrement){
this.processStatusIncrement = processStatusIncrement;
}
/**
* 获取 处理状态(0.未处理,1.已处理)
* @return processStatusList
*/
* 获取 处理状态(0.未处理,1.已处理)
* @return processStatusList
*/
public List<Integer> getProcessStatusList(){
return this.processStatusList;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList
*/
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList
*/
public void setProcessStatusList(List<Integer> processStatusList){
this.processStatusList = processStatusList;
}
/**
* 获取 处理状态(0.未处理,1.已处理)
* @return processStatusNotList
*/
* 获取 处理状态(0.未处理,1.已处理)
* @return processStatusNotList
*/
public List<Integer> getProcessStatusNotList(){
return this.processStatusNotList;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList
*/
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList
*/
public void setProcessStatusNotList(List<Integer> processStatusNotList){
this.processStatusNotList = processStatusNotList;
}
/**
* 获取 备注
* @return remarkList
*/
* 获取 备注
* @return remarkList
*/
public List<String> getRemarkList(){
return this.remarkList;
}
/**
* 设置 备注
* @param remarkList
*/
* 设置 备注
* @param remarkList
*/
public void setRemarkList(List<String> remarkList){
this.remarkList = remarkList;
}
/**
* 获取 备注
* @return remarkNotList
*/
* 获取 备注
* @return remarkNotList
*/
public List<String> getRemarkNotList(){
return this.remarkNotList;
}
/**
* 设置 备注
* @param remarkNotList
*/
* 设置 备注
* @param remarkNotList
*/
public void setRemarkNotList(List<String> remarkNotList){
this.remarkNotList = remarkNotList;
}
/**
* 获取 开始 创建时间
* @return createTimeStart
*/
* 获取 开始 创建时间
* @return createTimeStart
*/
public String getCreateTimeStart(){
return this.createTimeStart;
}
/**
* 设置 开始 创建时间
* @param createTimeStart
*/
* 设置 开始 创建时间
* @param createTimeStart
*/
public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart;
}
/**
* 获取 结束 创建时间
* @return createTimeEnd
*/
* 获取 结束 创建时间
* @return createTimeEnd
*/
public String getCreateTimeEnd(){
return this.createTimeEnd;
}
/**
* 设置 结束 创建时间
* @param createTimeEnd
*/
* 设置 结束 创建时间
* @param createTimeEnd
*/
public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd;
}
/**
* 获取 开始 创建用户
* @return createUserIdStart
*/
* 获取 开始 创建用户
* @return createUserIdStart
*/
public Long getCreateUserIdStart(){
return this.createUserIdStart;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
* 设置 开始 创建用户
* @param createUserIdStart
*/
public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart;
}
/**
* 获取 结束 创建用户
* @return $createUserIdEnd
*/
* 获取 结束 创建用户
* @return $createUserIdEnd
*/
public Long getCreateUserIdEnd(){
return this.createUserIdEnd;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd;
}
/**
* 获取 增加 创建用户
* @return createUserIdIncrement
*/
* 获取 增加 创建用户
* @return createUserIdIncrement
*/
public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement;
}
/**
* 获取 创建用户
* @return createUserIdList
*/
* 获取 创建用户
* @return createUserIdList
*/
public List<Long> getCreateUserIdList(){
return this.createUserIdList;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
* 设置 创建用户
* @param createUserIdList
*/
public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList;
}
/**
* 获取 创建用户
* @return createUserIdNotList
*/
* 获取 创建用户
* @return createUserIdNotList
*/
public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
* 设置 创建用户
* @param createUserIdNotList
*/
public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList;
}
/**
* 获取 开始 更新用户
* @return updateUserIdStart
*/
* 获取 开始 更新用户
* @return updateUserIdStart
*/
public Long getUpdateUserIdStart(){
return this.updateUserIdStart;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
* 设置 开始 更新用户
* @param updateUserIdStart
*/
public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart;
}
/**
* 获取 结束 更新用户
* @return $updateUserIdEnd
*/
* 获取 结束 更新用户
* @return $updateUserIdEnd
*/
public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd;
}
/**
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd;
}
/**
* 获取 增加 更新用户
* @return updateUserIdIncrement
*/
* 获取 增加 更新用户
* @return updateUserIdIncrement
*/
public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement;
}
/**
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement;
}
/**
* 获取 更新用户
* @return updateUserIdList
*/
* 获取 更新用户
* @return updateUserIdList
*/
public List<Long> getUpdateUserIdList(){
return this.updateUserIdList;
}
/**
* 设置 更新用户
* @param updateUserIdList
*/
* 设置 更新用户
* @param updateUserIdList
*/
public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList;
}
/**
* 获取 更新用户
* @return updateUserIdNotList
*/
* 获取 更新用户
* @return updateUserIdNotList
*/
public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
* 设置 更新用户
* @param updateUserIdNotList
*/
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList;
}
/**
* 获取 开始 更新时间
* @return updateTimeStart
*/
* 获取 开始 更新时间
* @return updateTimeStart
*/
public String getUpdateTimeStart(){
return this.updateTimeStart;
}
/**
* 设置 开始 更新时间
* @param updateTimeStart
*/
* 设置 开始 更新时间
* @param updateTimeStart
*/
public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart;
}
/**
* 获取 结束 更新时间
* @return updateTimeEnd
*/
* 获取 结束 更新时间
* @return updateTimeEnd
*/
public String getUpdateTimeEnd(){
return this.updateTimeEnd;
}
/**
* 设置 结束 更新时间
* @param updateTimeEnd
*/
* 设置 结束 更新时间
* @param updateTimeEnd
*/
public void setUpdateTimeEnd(String 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){
setId(id);
return this;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
setId(id);
return this;
}
/**
* 设置 开始 主键ID,主键,自增长
* @param idStart
*/
public ChildLicenseQuery idStart(Long idStart){
this.idStart = idStart;
return this;
this.idStart = idStart;
return this;
}
/**
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
* 设置 结束 主键ID,主键,自增长
* @param idEnd
*/
public ChildLicenseQuery idEnd(Long idEnd){
this.idEnd = idEnd;
return this;
this.idEnd = idEnd;
return this;
}
/**
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
* 设置 增加 主键ID,主键,自增长
* @param idIncrement
*/
public ChildLicenseQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement;
return this;
this.idIncrement = idIncrement;
return this;
}
/**
* 设置 主键ID,主键,自增长
* @param idList
*/
* 设置 主键ID,主键,自增长
* @param idList
*/
public ChildLicenseQuery idList(List<Long> idList){
this.idList = idList;
return this;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public ChildLicenseQuery idNotList(List<Long> idNotList){
return this;
}
/**
* 设置 主键ID,主键,自增长
* @param idNotList
*/
public ChildLicenseQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
}
}
/**
* 设置 站点Id
* @param siteId
*/
* 设置 站点Id
* @param siteId
*/
public ChildLicenseQuery siteId(Long siteId){
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点Id
* @param siteIdStart
*/
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点Id
* @param siteIdStart
*/
public ChildLicenseQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
this.siteIdStart = siteIdStart;
return this;
}
/**
* 设置 结束 站点Id
* @param siteIdEnd
*/
* 设置 结束 站点Id
* @param siteIdEnd
*/
public ChildLicenseQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
return this;
this.siteIdEnd = siteIdEnd;
return this;
}
/**
* 设置 增加 站点Id
* @param siteIdIncrement
*/
* 设置 增加 站点Id
* @param siteIdIncrement
*/
public ChildLicenseQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
return this;
this.siteIdIncrement = siteIdIncrement;
return this;
}
/**
* 设置 站点Id
* @param siteIdList
*/
* 设置 站点Id
* @param siteIdList
*/
public ChildLicenseQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
return this;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
public ChildLicenseQuery siteIdNotList(List<Long> siteIdNotList){
return this;
}
/**
* 设置 站点Id
* @param siteIdNotList
*/
public ChildLicenseQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
}
/**
* 设置 站点名称
* @param siteName
*/
/**
* 设置 站点名称
* @param siteName
*/
public ChildLicenseQuery siteName(String siteName){
setSiteName(siteName);
return this;
return this;
}
/**
* 设置 站点名称
* @param siteNameList
*/
* 设置 站点名称
* @param siteNameList
*/
public ChildLicenseQuery siteNameList(List<String> siteNameList){
this.siteNameList = siteNameList;
return this;
return this;
}
/**
* 设置 目录id
* @param catalogId
*/
* 设置 目录id
* @param catalogId
*/
public ChildLicenseQuery catalogId(Long catalogId){
setCatalogId(catalogId);
return this;
}
/**
* 设置 开始 目录id
* @param catalogIdStart
*/
setCatalogId(catalogId);
return this;
}
/**
* 设置 开始 目录id
* @param catalogIdStart
*/
public ChildLicenseQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart;
return this;
this.catalogIdStart = catalogIdStart;
return this;
}
/**
* 设置 结束 目录id
* @param catalogIdEnd
*/
* 设置 结束 目录id
* @param catalogIdEnd
*/
public ChildLicenseQuery catalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd;
return this;
this.catalogIdEnd = catalogIdEnd;
return this;
}
/**
* 设置 增加 目录id
* @param catalogIdIncrement
*/
* 设置 增加 目录id
* @param catalogIdIncrement
*/
public ChildLicenseQuery catalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement;
return this;
this.catalogIdIncrement = catalogIdIncrement;
return this;
}
/**
* 设置 目录id
* @param catalogIdList
*/
* 设置 目录id
* @param catalogIdList
*/
public ChildLicenseQuery catalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList;
return this;
}
/**
* 设置 目录id
* @param catalogIdNotList
*/
public ChildLicenseQuery catalogIdNotList(List<Long> catalogIdNotList){
return this;
}
/**
* 设置 目录id
* @param catalogIdNotList
*/
public ChildLicenseQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList;
return this;
}
}
/**
* 设置 目录名称
* @param catalogName
*/
/**
* 设置 目录名称
* @param catalogName
*/
public ChildLicenseQuery catalogName(String catalogName){
setCatalogName(catalogName);
return this;
return this;
}
/**
* 设置 目录名称
* @param catalogNameList
*/
* 设置 目录名称
* @param catalogNameList
*/
public ChildLicenseQuery catalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList;
return this;
return this;
}
/**
* 设置 申请Id
* @param applyId
*/
* 设置 申请Id
* @param applyId
*/
public ChildLicenseQuery applyId(Long applyId){
setApplyId(applyId);
return this;
}
/**
* 设置 开始 申请Id
* @param applyIdStart
*/
setApplyId(applyId);
return this;
}
/**
* 设置 开始 申请Id
* @param applyIdStart
*/
public ChildLicenseQuery applyIdStart(Long applyIdStart){
this.applyIdStart = applyIdStart;
return this;
this.applyIdStart = applyIdStart;
return this;
}
/**
* 设置 结束 申请Id
* @param applyIdEnd
*/
* 设置 结束 申请Id
* @param applyIdEnd
*/
public ChildLicenseQuery applyIdEnd(Long applyIdEnd){
this.applyIdEnd = applyIdEnd;
return this;
this.applyIdEnd = applyIdEnd;
return this;
}
/**
* 设置 增加 申请Id
* @param applyIdIncrement
*/
* 设置 增加 申请Id
* @param applyIdIncrement
*/
public ChildLicenseQuery applyIdIncrement(Long applyIdIncrement){
this.applyIdIncrement = applyIdIncrement;
return this;
this.applyIdIncrement = applyIdIncrement;
return this;
}
/**
* 设置 申请Id
* @param applyIdList
*/
* 设置 申请Id
* @param applyIdList
*/
public ChildLicenseQuery applyIdList(List<Long> applyIdList){
this.applyIdList = applyIdList;
return this;
}
/**
* 设置 申请Id
* @param applyIdNotList
*/
public ChildLicenseQuery applyIdNotList(List<Long> applyIdNotList){
return this;
}
/**
* 设置 申请Id
* @param applyIdNotList
*/
public ChildLicenseQuery applyIdNotList(List<Long> applyIdNotList){
this.applyIdNotList = applyIdNotList;
return this;
}
}
/**
* 设置 子证配置Id
* @param documentId
*/
* 设置 子证配置Id
* @param documentId
*/
public ChildLicenseQuery documentId(Long documentId){
setDocumentId(documentId);
return this;
}
/**
* 设置 开始 子证配置Id
* @param documentIdStart
*/
setDocumentId(documentId);
return this;
}
/**
* 设置 开始 子证配置Id
* @param documentIdStart
*/
public ChildLicenseQuery documentIdStart(Long documentIdStart){
this.documentIdStart = documentIdStart;
return this;
this.documentIdStart = documentIdStart;
return this;
}
/**
* 设置 结束 子证配置Id
* @param documentIdEnd
*/
* 设置 结束 子证配置Id
* @param documentIdEnd
*/
public ChildLicenseQuery documentIdEnd(Long documentIdEnd){
this.documentIdEnd = documentIdEnd;
return this;
this.documentIdEnd = documentIdEnd;
return this;
}
/**
* 设置 增加 子证配置Id
* @param documentIdIncrement
*/
* 设置 增加 子证配置Id
* @param documentIdIncrement
*/
public ChildLicenseQuery documentIdIncrement(Long documentIdIncrement){
this.documentIdIncrement = documentIdIncrement;
return this;
this.documentIdIncrement = documentIdIncrement;
return this;
}
/**
* 设置 子证配置Id
* @param documentIdList
*/
* 设置 子证配置Id
* @param documentIdList
*/
public ChildLicenseQuery documentIdList(List<Long> documentIdList){
this.documentIdList = documentIdList;
return this;
}
/**
* 设置 子证配置Id
* @param documentIdNotList
*/
public ChildLicenseQuery documentIdNotList(List<Long> documentIdNotList){
return this;
}
/**
* 设置 子证配置Id
* @param documentIdNotList
*/
public ChildLicenseQuery documentIdNotList(List<Long> documentIdNotList){
this.documentIdNotList = documentIdNotList;
return this;
}
}
/**
* 设置 子证名称
* @param documentName
*/
/**
* 设置 子证名称
* @param documentName
*/
public ChildLicenseQuery documentName(String documentName){
setDocumentName(documentName);
return this;
return this;
}
/**
* 设置 子证名称
* @param documentNameList
*/
* 设置 子证名称
* @param documentNameList
*/
public ChildLicenseQuery documentNameList(List<String> documentNameList){
this.documentNameList = documentNameList;
return this;
return this;
}
/**
* 设置 部门id
* @param deptId
*/
* 设置 部门id
* @param deptId
*/
public ChildLicenseQuery deptId(Long deptId){
setDeptId(deptId);
return this;
}
/**
* 设置 开始 部门id
* @param deptIdStart
*/
setDeptId(deptId);
return this;
}
/**
* 设置 开始 部门id
* @param deptIdStart
*/
public ChildLicenseQuery deptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart;
return this;
this.deptIdStart = deptIdStart;
return this;
}
/**
* 设置 结束 部门id
* @param deptIdEnd
*/
* 设置 结束 部门id
* @param deptIdEnd
*/
public ChildLicenseQuery deptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd;
return this;
this.deptIdEnd = deptIdEnd;
return this;
}
/**
* 设置 增加 部门id
* @param deptIdIncrement
*/
* 设置 增加 部门id
* @param deptIdIncrement
*/
public ChildLicenseQuery deptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement;
return this;
this.deptIdIncrement = deptIdIncrement;
return this;
}
/**
* 设置 部门id
* @param deptIdList
*/
* 设置 部门id
* @param deptIdList
*/
public ChildLicenseQuery deptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList;
return this;
}
/**
* 设置 部门id
* @param deptIdNotList
*/
public ChildLicenseQuery deptIdNotList(List<Long> deptIdNotList){
return this;
}
/**
* 设置 部门id
* @param deptIdNotList
*/
public ChildLicenseQuery deptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList;
return this;
}
}
/**
* 设置 部门名称
* @param deptName
*/
/**
* 设置 部门名称
* @param deptName
*/
public ChildLicenseQuery deptName(String deptName){
setDeptName(deptName);
return this;
return this;
}
/**
* 设置 部门名称
* @param deptNameList
*/
* 设置 部门名称
* @param deptNameList
*/
public ChildLicenseQuery deptNameList(List<String> deptNameList){
this.deptNameList = deptNameList;
return this;
return this;
}
/**
* 设置 市场主体名称
* @param marketEntityName
*/
/**
* 设置 市场主体名称
* @param marketEntityName
*/
public ChildLicenseQuery marketEntityName(String marketEntityName){
setMarketEntityName(marketEntityName);
return this;
return this;
}
/**
* 设置 市场主体名称
* @param marketEntityNameList
*/
* 设置 市场主体名称
* @param marketEntityNameList
*/
public ChildLicenseQuery marketEntityNameList(List<String> marketEntityNameList){
this.marketEntityNameList = marketEntityNameList;
return this;
return this;
}
/**
* 设置 许可证编号
* @param licenseCode
*/
/**
* 设置 许可证编号
* @param licenseCode
*/
public ChildLicenseQuery licenseCode(String licenseCode){
setLicenseCode(licenseCode);
return this;
return this;
}
/**
* 设置 许可证编号
* @param licenseCodeList
*/
* 设置 许可证编号
* @param licenseCodeList
*/
public ChildLicenseQuery licenseCodeList(List<String> licenseCodeList){
this.licenseCodeList = licenseCodeList;
return this;
return this;
}
/**
* 设置 法定代表人(负责人)
* @param legalPersonName
*/
/**
* 设置 法定代表人(负责人)
* @param legalPersonName
*/
public ChildLicenseQuery legalPersonName(String legalPersonName){
setLegalPersonName(legalPersonName);
return this;
return this;
}
/**
* 设置 法定代表人(负责人)
* @param legalPersonNameList
*/
* 设置 法定代表人(负责人)
* @param legalPersonNameList
*/
public ChildLicenseQuery legalPersonNameList(List<String> legalPersonNameList){
this.legalPersonNameList = legalPersonNameList;
return this;
return this;
}
/**
* 设置 统一社会信用代码
* @param creditCode
*/
/**
* 设置 统一社会信用代码
* @param creditCode
*/
public ChildLicenseQuery creditCode(String creditCode){
setCreditCode(creditCode);
return this;
return this;
}
/**
* 设置 统一社会信用代码
* @param creditCodeList
*/
* 设置 统一社会信用代码
* @param creditCodeList
*/
public ChildLicenseQuery creditCodeList(List<String> creditCodeList){
this.creditCodeList = creditCodeList;
return this;
return this;
}
/**
* 设置 证件二维码
* @param certQRCode
*/
/**
* 设置 证件二维码
* @param certQRCode
*/
public ChildLicenseQuery certQRCode(String certQRCode){
setCertQRCode(certQRCode);
return this;
return this;
}
/**
* 设置 证件二维码
* @param certQRCodeList
*/
* 设置 证件二维码
* @param certQRCodeList
*/
public ChildLicenseQuery certQRCodeList(List<String> certQRCodeList){
this.certQRCodeList = certQRCodeList;
return this;
return this;
}
/**
* 设置 制证机关
* @param certAuthority
*/
/**
* 设置 制证机关
* @param certAuthority
*/
public ChildLicenseQuery certAuthority(String certAuthority){
setCertAuthority(certAuthority);
return this;
return this;
}
/**
* 设置 制证机关
* @param certAuthorityList
*/
* 设置 制证机关
* @param certAuthorityList
*/
public ChildLicenseQuery certAuthorityList(List<String> certAuthorityList){
this.certAuthorityList = certAuthorityList;
return this;
return this;
}
/**
* 设置 经营场所
* @param businessPlace
*/
/**
* 设置 经营场所
* @param businessPlace
*/
public ChildLicenseQuery businessPlace(String businessPlace){
setBusinessPlace(businessPlace);
return this;
return this;
}
/**
* 设置 经营场所
* @param businessPlaceList
*/
* 设置 经营场所
* @param businessPlaceList
*/
public ChildLicenseQuery businessPlaceList(List<String> businessPlaceList){
this.businessPlaceList = businessPlaceList;
return this;
return this;
}
/**
* 设置 许可项目
* @param licensedItems
*/
/**
* 设置 许可项目
* @param licensedItems
*/
public ChildLicenseQuery licensedItems(String licensedItems){
setLicensedItems(licensedItems);
return this;
return this;
}
/**
* 设置 许可项目
* @param licensedItemsList
*/
* 设置 许可项目
* @param licensedItemsList
*/
public ChildLicenseQuery licensedItemsList(List<String> licensedItemsList){
this.licensedItemsList = licensedItemsList;
return this;
return this;
}
/**
* 设置 正本文件名称
* @param originalFileName
*/
/**
* 设置 正本文件名称
* @param originalFileName
*/
public ChildLicenseQuery originalFileName(String originalFileName){
setOriginalFileName(originalFileName);
return this;
return this;
}
/**
* 设置 正本文件名称
* @param originalFileNameList
*/
* 设置 正本文件名称
* @param originalFileNameList
*/
public ChildLicenseQuery originalFileNameList(List<String> originalFileNameList){
this.originalFileNameList = originalFileNameList;
return this;
return this;
}
/**
* 设置 正本文件相对路径地址
* @param originalFilePath
*/
/**
* 设置 正本文件相对路径地址
* @param originalFilePath
*/
public ChildLicenseQuery originalFilePath(String originalFilePath){
setOriginalFilePath(originalFilePath);
return this;
return this;
}
/**
* 设置 正本文件相对路径地址
* @param originalFilePathList
*/
* 设置 正本文件相对路径地址
* @param originalFilePathList
*/
public ChildLicenseQuery originalFilePathList(List<String> originalFilePathList){
this.originalFilePathList = originalFilePathList;
return this;
return this;
}
/**
* 设置 副本文件名称
* @param copyFileName
*/
/**
* 设置 副本文件名称
* @param copyFileName
*/
public ChildLicenseQuery copyFileName(String copyFileName){
setCopyFileName(copyFileName);
return this;
return this;
}
/**
* 设置 副本文件名称
* @param copyFileNameList
*/
* 设置 副本文件名称
* @param copyFileNameList
*/
public ChildLicenseQuery copyFileNameList(List<String> copyFileNameList){
this.copyFileNameList = copyFileNameList;
return this;
return this;
}
/**
* 设置 副本文件相对路径地址
* @param copyFilePath
*/
/**
* 设置 副本文件相对路径地址
* @param copyFilePath
*/
public ChildLicenseQuery copyFilePath(String copyFilePath){
setCopyFilePath(copyFilePath);
return this;
return this;
}
/**
* 设置 副本文件相对路径地址
* @param copyFilePathList
*/
* 设置 副本文件相对路径地址
* @param copyFilePathList
*/
public ChildLicenseQuery copyFilePathList(List<String> copyFilePathList){
this.copyFilePathList = copyFilePathList;
return this;
return this;
}
/**
* 设置 简介
* @param summary
*/
/**
* 设置 简介
* @param summary
*/
public ChildLicenseQuery summary(String summary){
setSummary(summary);
return this;
return this;
}
/**
* 设置 简介
* @param summaryList
*/
* 设置 简介
* @param summaryList
*/
public ChildLicenseQuery summaryList(List<String> summaryList){
this.summaryList = summaryList;
return this;
return this;
}
/**
* 设置 动态表单样式
* @param formStyleContent
*/
/**
* 设置 动态表单样式
* @param formStyleContent
*/
public ChildLicenseQuery formStyleContent(String formStyleContent){
setFormStyleContent(formStyleContent);
return this;
return this;
}
/**
* 设置 动态表单样式
* @param formStyleContentList
*/
* 设置 动态表单样式
* @param formStyleContentList
*/
public ChildLicenseQuery formStyleContentList(List<String> formStyleContentList){
this.formStyleContentList = formStyleContentList;
return this;
return this;
}
/**
* 设置 提交的表单
* @param formContent
*/
/**
* 设置 提交的表单
* @param formContent
*/
public ChildLicenseQuery formContent(String formContent){
setFormContent(formContent);
return this;
return this;
}
/**
* 设置 提交的表单
* @param formContentList
*/
* 设置 提交的表单
* @param formContentList
*/
public ChildLicenseQuery formContentList(List<String> formContentList){
this.formContentList = formContentList;
return this;
return this;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatus
*/
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatus
*/
public ChildLicenseQuery processStatus(Integer processStatus){
setProcessStatus(processStatus);
return this;
}
/**
* 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart
*/
setProcessStatus(processStatus);
return this;
}
/**
* 设置 开始 处理状态(0.未处理,1.已处理)
* @param processStatusStart
*/
public ChildLicenseQuery processStatusStart(Integer processStatusStart){
this.processStatusStart = processStatusStart;
return this;
this.processStatusStart = processStatusStart;
return this;
}
/**
* 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd
*/
* 设置 结束 处理状态(0.未处理,1.已处理)
* @param processStatusEnd
*/
public ChildLicenseQuery processStatusEnd(Integer processStatusEnd){
this.processStatusEnd = processStatusEnd;
return this;
this.processStatusEnd = processStatusEnd;
return this;
}
/**
* 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement
*/
* 设置 增加 处理状态(0.未处理,1.已处理)
* @param processStatusIncrement
*/
public ChildLicenseQuery processStatusIncrement(Integer processStatusIncrement){
this.processStatusIncrement = processStatusIncrement;
return this;
this.processStatusIncrement = processStatusIncrement;
return this;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList
*/
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusList
*/
public ChildLicenseQuery processStatusList(List<Integer> processStatusList){
this.processStatusList = processStatusList;
return this;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList
*/
public ChildLicenseQuery processStatusNotList(List<Integer> processStatusNotList){
return this;
}
/**
* 设置 处理状态(0.未处理,1.已处理)
* @param processStatusNotList
*/
public ChildLicenseQuery processStatusNotList(List<Integer> processStatusNotList){
this.processStatusNotList = processStatusNotList;
return this;
}
}
/**
* 设置 备注
* @param remark
*/
/**
* 设置 备注
* @param remark
*/
public ChildLicenseQuery remark(String remark){
setRemark(remark);
return this;
return this;
}
/**
* 设置 备注
* @param remarkList
*/
* 设置 备注
* @param remarkList
*/
public ChildLicenseQuery remarkList(List<String> remarkList){
this.remarkList = remarkList;
return this;
return this;
}
/**
* 设置 创建用户
* @param createUserId
*/
* 设置 创建用户
* @param createUserId
*/
public ChildLicenseQuery createUserId(Long createUserId){
setCreateUserId(createUserId);
return this;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
setCreateUserId(createUserId);
return this;
}
/**
* 设置 开始 创建用户
* @param createUserIdStart
*/
public ChildLicenseQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart;
return this;
this.createUserIdStart = createUserIdStart;
return this;
}
/**
* 设置 结束 创建用户
* @param createUserIdEnd
*/
* 设置 结束 创建用户
* @param createUserIdEnd
*/
public ChildLicenseQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd;
return this;
this.createUserIdEnd = createUserIdEnd;
return this;
}
/**
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
* 设置 增加 创建用户
* @param createUserIdIncrement
*/
public ChildLicenseQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement;
return this;
this.createUserIdIncrement = createUserIdIncrement;
return this;
}
/**
* 设置 创建用户
* @param createUserIdList
*/
* 设置 创建用户
* @param createUserIdList
*/
public ChildLicenseQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList;
return this;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public ChildLicenseQuery createUserIdNotList(List<Long> createUserIdNotList){
return this;
}
/**
* 设置 创建用户
* @param createUserIdNotList
*/
public ChildLicenseQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList;
return this;
}
}
/**
* 设置 更新用户
* @param updateUserId
*/
* 设置 更新用户
* @param updateUserId
*/
public ChildLicenseQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId);
return this;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
setUpdateUserId(updateUserId);
return this;
}
/**
* 设置 开始 更新用户
* @param updateUserIdStart
*/
public ChildLicenseQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart;
return this;
this.updateUserIdStart = updateUserIdStart;
return this;
}
/**
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
* 设置 结束 更新用户
* @param updateUserIdEnd
*/
public ChildLicenseQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd;
return this;
this.updateUserIdEnd = updateUserIdEnd;
return this;
}
/**
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
* 设置 增加 更新用户
* @param updateUserIdIncrement
*/
public ChildLicenseQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement;
return this;
this.updateUserIdIncrement = updateUserIdIncrement;
return this;
}
/**
* 设置 更新用户
* @param updateUserIdList
*/
* 设置 更新用户
* @param updateUserIdList
*/
public ChildLicenseQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList;
return this;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public ChildLicenseQuery updateUserIdNotList(List<Long> updateUserIdNotList){
return this;
}
/**
* 设置 更新用户
* @param updateUserIdNotList
*/
public ChildLicenseQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList;
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)
* @return orConditionList
*/
* 获取 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @return orConditionList
*/
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)
* @param orConditionList
*/
* 设置 OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4)
* @param orConditionList
*/
public void setOrConditionList(List<ChildLicenseQuery> orConditionList){
this.orConditionList = orConditionList;
}
/**
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList
*/
* 获取 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @return andConditionList
*/
public List<ChildLicenseQuery> getAndConditionList(){
return this.andConditionList;
}
/**
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList
*/
* 设置 AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4)
* @param andConditionList
*/
public void setAndConditionList(List<ChildLicenseQuery> andConditionList){
this.andConditionList = andConditionList;
}
......
......@@ -19,5 +19,10 @@ public class ChildLicenseVo extends BaseEntityLong {
/** 主键ID,主键,自增长列表 */
private List <Long> idList;
/** 开始 创建时间 */
private String createTimeStart;
/** 结束 创建时间 */
private String createTimeEnd;
}
\ No newline at end of file
......@@ -81,4 +81,7 @@ public class ChildLicenseServiceImpl extends AbstractCRUDServiceImpl<ChildLicens
}
return result;
}
}
\ No newline at end of file
package com.mortals.xhx.module.child.web;
import com.mortals.framework.common.Rest;
import com.mortals.framework.exception.AppException;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.annotation.DataPermission;
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 com.mortals.xhx.module.device.model.DeviceEntity;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
......@@ -19,15 +23,11 @@ import com.mortals.xhx.module.child.service.ChildLicenseService;
import org.apache.commons.lang3.ArrayUtils;
import com.mortals.framework.util.StringUtils;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.*;
import java.util.stream.Collectors;
import com.alibaba.fastjson.JSONObject;
import java.util.Arrays;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
......@@ -45,8 +45,9 @@ import com.mortals.xhx.common.code.*;
@RequestMapping("child/license")
public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<ChildLicenseService, ChildLicenseEntity, Long> {
@Autowired
private ParamService paramService;
private CertificateDocumentService certificateDocumentService;
public ChildLicenseController() {
super.setModuleDesc("行业许可子证");
......@@ -56,6 +57,11 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
protected void init(Map<String, Object> model, Context context) {
this.addDict(model, "legalPersonName", LegalPersonNameEnum.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);
}
......@@ -64,4 +70,47 @@ public class ChildLicenseController extends BaseCRUDJsonBodyMappingController<Ch
public Rest<Object> list(@RequestBody ChildLicenseEntity query) {
return super.list(query);
}
@Override
protected void doListAfter(ChildLicenseEntity query, List<ChildLicenseEntity> list, Context context) throws AppException {
list.forEach(item -> {
item.setFormContent("");
item.setFormStyleContent("");
});
super.doListAfter(query, list, context);
}
/**
* 子证联报
*/
@PostMapping(value = "report")
public String report(@RequestBody ChildLicenseEntity childLicenseEntity) {
JSONObject jsonObject = new JSONObject();
Map<String, Object> model = new HashMap<>();
String busiDesc = this.getModuleDesc() + "联报";
try {
if (childLicenseEntity.newEntity()) throw new AppException("Id不能为空!");
ChildLicenseEntity sourceEntity = this.service.get(childLicenseEntity.getId());
if (ProcessStatusEnum.已处理.getValue() == sourceEntity.getProcessStatus())
throw new AppException("当前子证已经联报");
childLicenseEntity.setReportUserId(this.getContextUserId(getContext()));
childLicenseEntity.setReportUserName(this.getContext().getUser().getRealName());
childLicenseEntity.setReportTime(new Date());
childLicenseEntity.setProcessStatus(ProcessStatusEnum.已处理.getValue());
this.service.update(childLicenseEntity, getContext());
recordSysLog(request, busiDesc + " 【成功】");
jsonObject.put(KEY_RESULT_DATA, model);
jsonObject.put(KEY_RESULT_CODE, VALUE_RESULT_SUCCESS);
} catch (Exception e) {
log.error("子证联报异常", e);
jsonObject.put(KEY_RESULT_CODE, VALUE_RESULT_FAILURE);
jsonObject.put(KEY_RESULT_MSG, super.convertException(e));
}
return jsonObject.toJSONString();
}
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -36,4 +36,10 @@ Content-Type: application/json
POST {{baseUrl}}/user/interlist
Content-Type: application/json
{}
###获取参数列表
POST {{baseUrl}}/param/interlist
Content-Type: application/json
{}
\ No newline at end of file
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