Commit 37354cdd authored by 廖旭伟's avatar 廖旭伟

增加证照打印缺件人手机号码字段

parent 0616399f
...@@ -243,6 +243,7 @@ public class CertificateApi extends BaseJsonBodyController { ...@@ -243,6 +243,7 @@ public class CertificateApi extends BaseJsonBodyController {
printWaitQueueVO.setPrinterIp(printCatalogEntity.getPrinterIp()); printWaitQueueVO.setPrinterIp(printCatalogEntity.getPrinterIp());
printWaitQueueVO.setPrinterName(printCatalogEntity.getPrinterName()); printWaitQueueVO.setPrinterName(printCatalogEntity.getPrinterName());
printWaitQueueVO.setPaperSource(printCatalogEntity.getPaperSource()); printWaitQueueVO.setPaperSource(printCatalogEntity.getPaperSource());
printWaitQueueVO.setMobile(printWaitQueueEntity.getMobile());
waitQueueVOList.add(printWaitQueueVO); waitQueueVOList.add(printWaitQueueVO);
} }
model.put("data", waitQueueVOList); model.put("data", waitQueueVOList);
......
...@@ -78,4 +78,9 @@ public class PrintWaitQueueVO { ...@@ -78,4 +78,9 @@ public class PrintWaitQueueVO {
* 打印机纸盒 * 打印机纸盒
*/ */
private String paperSource; private String paperSource;
/**
* 手机号码
*/
private String mobile;
} }
...@@ -8,126 +8,130 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -8,126 +8,130 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.record.model.vo.ApplyLogVo; import com.mortals.xhx.module.record.model.vo.ApplyLogVo;
import lombok.Data; import lombok.Data;
/** /**
* 证照申请实体对象 * 证照申请实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
@Data @Data
public class ApplyLogEntity extends ApplyLogVo { public class ApplyLogEntity extends ApplyLogVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点id * 证照档案ID
*/ */
private Long siteId;
/**
* 证照档案ID
*/
private Long recordId; private Long recordId;
/** /**
* 证照目录ID * 证照目录ID
*/ */
private Long catalogId; private Long catalogId;
/** /**
* 证照目录编号 * 证照目录编号
*/ */
private String catalogCode; private String catalogCode;
/** /**
* 目录名称 * 目录名称
*/ */
private String catalogName; private String catalogName;
/** /**
* 证照目录模板ID * 证件编号
*/ */
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 证件编号
*/
private String certificateCode; private String certificateCode;
/** /**
* 证件名称 * 证件名称
*/ */
private String certificateName; private String certificateName;
/** /**
* 颁发时间 * 颁发时间
*/ */
private Date issueTime; private Date issueTime;
/** /**
* 取件人姓名 * 取件人姓名
*/ */
private String pickerName; private String pickerName;
/** /**
* 取件人证件号码 * 取件人证件号码
*/ */
private String pickerIDCardNo; private String pickerIDCardNo;
/** /**
* 持有者类型,1:自然人,2:法人,3:自然人法人 * 持有者类型,1:自然人,2:法人,3:自然人法人
*/ */
private Integer holderType; private Integer holderType;
/** /**
* 持有者证件类型,1:身份证,2:组织机构代码等 * 持有者证件类型,1:身份证,2:组织机构代码等
*/ */
private Integer holderIdType; private Integer holderIdType;
/** /**
* 持有者名称 * 持有者名称
*/ */
private String holderName; private String holderName;
/** /**
* 持有者证件号码 * 持有者证件号码
*/ */
private String holderIDCardNo; private String holderIDCardNo;
/** /**
* 企业名称 * 企业名称
*/ */
private String enterpriseName; private String enterpriseName;
/** /**
* 有效期起始 * 有效期起始
*/ */
private Date validityStart; private Date validityStart;
/** /**
* 有效期截止 * 有效期截止
*/ */
private Date validityEnd; private Date validityEnd;
/** /**
* 专网ID * 专网ID
*/ */
private String privateID; private String privateID;
/** /**
* 证件附件地址 * 证件附件地址
*/ */
private String certificateUrl; private String certificateUrl;
/** /**
* 证件预览地址 * 证件预览地址
*/ */
private String previewUrl; private String previewUrl;
/** /**
* 证照模板正本表单内容 * 证照模板正本表单内容
*/ */
private String formContent; private String formContent;
/** /**
* 证照模板正本表单内容 * 证照模板正本表单内容
*/ */
private String formTemplate; private String formTemplate;
/** /**
* 生成状态1未生成2已生成 * 生成状态1未生成2已生成
*/ */
private Integer generateStatus; private Integer generateStatus;
/** /**
* 档案操作类型1新增2变更 * 档案操作类型1新增2变更
*/ */
private Integer operType; private Integer operType;
/** /**
* 归档状态0否1是 * 归档状态0否1是
*/ */
private Integer recordStatus; private Integer recordStatus;
/**
* 站点id
*/
private Long siteId;
/**
* 证照目录模板ID
*/
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 手机号码
*/
private String mobile;
@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) {
...@@ -135,7 +139,7 @@ public class ApplyLogEntity extends ApplyLogVo { ...@@ -135,7 +139,7 @@ public class ApplyLogEntity extends ApplyLogVo {
if (obj instanceof ApplyLogEntity) { if (obj instanceof ApplyLogEntity) {
ApplyLogEntity tmp = (ApplyLogEntity) obj; ApplyLogEntity tmp = (ApplyLogEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
...@@ -143,58 +147,60 @@ public class ApplyLogEntity extends ApplyLogVo { ...@@ -143,58 +147,60 @@ public class ApplyLogEntity extends ApplyLogVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.recordId = -1L;
this.catalogId = -1L;
this.recordId = -1L; this.catalogCode = "";
this.catalogId = -1L; this.catalogName = "";
this.catalogCode = ""; this.certificateCode = "";
this.catalogName = ""; this.certificateName = "";
this.templateId = -1L; this.issueTime = null;
this.templateName = ""; this.pickerName = "";
this.certificateCode = ""; this.pickerIDCardNo = "";
this.certificateName = ""; this.holderType = 1;
this.issueTime = null; this.holderIdType = 1;
this.pickerName = ""; this.holderName = "";
this.pickerIDCardNo = ""; this.holderIDCardNo = "";
this.holderType = 1; this.enterpriseName = "";
this.holderIdType = 1; this.validityStart = null;
this.holderName = ""; this.validityEnd = null;
this.holderIDCardNo = ""; this.privateID = "";
this.enterpriseName = ""; this.certificateUrl = "";
this.validityStart = null; this.previewUrl = "";
this.validityEnd = null; this.formContent = "";
this.privateID = ""; this.formTemplate = "";
this.certificateUrl = ""; this.generateStatus = 1;
this.previewUrl = ""; this.operType = 1;
this.formContent = ""; this.recordStatus = 0;
this.formTemplate = ""; this.siteId = -1L;
this.generateStatus = 1; this.templateId = -1L;
this.operType = 1; this.templateName = "";
this.recordStatus = 0; this.mobile = "";
} }
} }
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -8,86 +8,90 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -8,86 +8,90 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.record.model.vo.PrintLogVo; import com.mortals.xhx.module.record.model.vo.PrintLogVo;
import lombok.Data; import lombok.Data;
/** /**
* 证照打印记录实体对象 * 证照打印记录实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
@Data @Data
public class PrintLogEntity extends PrintLogVo { public class PrintLogEntity extends PrintLogVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点id * 证照目录ID
*/ */
private Long siteId;
/**
* 证照目录ID
*/
private Long catalogId; private Long catalogId;
/** /**
* 证照目录编号 * 证照目录编号
*/ */
private String catalogCode; private String catalogCode;
/** /**
* 目录名称 * 目录名称
*/ */
private String catalogName; private String catalogName;
/** /**
* 证照名称 * 证照名称
*/ */
private String certificateName; private String certificateName;
/** /**
* 证照编号 * 证照编号
*/ */
private String certificateCode; private String certificateCode;
/** /**
* 证照目录模板ID * 企业名称
*/ */
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 企业名称
*/
private String enterpriseName; private String enterpriseName;
/** /**
* 持有者姓名 * 持有者姓名
*/ */
private String holderName; private String holderName;
/** /**
* 持有者证件号码 * 持有者证件号码
*/ */
private String holderIDCardNo; private String holderIDCardNo;
/** /**
* 取件人姓名 * 取件人姓名
*/ */
private String pickerName; private String pickerName;
/** /**
* 取件人证件号码 * 取件人证件号码
*/ */
private String pickerIDCardNo; private String pickerIDCardNo;
/** /**
* 打印状态1打印成功0失败 * 打印状态1打印成功0失败
*/ */
private Integer printStatus; private Integer printStatus;
/** /**
* 打印时间 * 打印时间
*/ */
private Date printDate; private Date printDate;
/** /**
* 打印结果描述 * 打印结果描述
*/ */
private String statusRemark; private String statusRemark;
/** /**
* 打印设备 * 打印设备
*/ */
private Long deviceId; private Long deviceId;
/**
* 站点id
*/
private Long siteId;
/**
* 证照目录模板ID
*/
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 手机号码
*/
private String mobile;
@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) {
...@@ -95,7 +99,7 @@ public class PrintLogEntity extends PrintLogVo { ...@@ -95,7 +99,7 @@ public class PrintLogEntity extends PrintLogVo {
if (obj instanceof PrintLogEntity) { if (obj instanceof PrintLogEntity) {
PrintLogEntity tmp = (PrintLogEntity) obj; PrintLogEntity tmp = (PrintLogEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
...@@ -103,38 +107,40 @@ public class PrintLogEntity extends PrintLogVo { ...@@ -103,38 +107,40 @@ public class PrintLogEntity extends PrintLogVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.catalogId = -1L;
this.catalogCode = "";
this.catalogId = -1L; this.catalogName = "";
this.catalogCode = ""; this.certificateName = "";
this.catalogName = ""; this.certificateCode = "";
this.certificateName = ""; this.enterpriseName = "";
this.certificateCode = ""; this.holderName = "";
this.templateId = -1L; this.holderIDCardNo = "";
this.templateName = ""; this.pickerName = "";
this.enterpriseName = ""; this.pickerIDCardNo = "";
this.holderName = ""; this.printStatus = 1;
this.holderIDCardNo = ""; this.printDate = null;
this.pickerName = ""; this.statusRemark = "";
this.pickerIDCardNo = ""; this.deviceId = -1L;
this.printStatus = 1; this.siteId = -1L;
this.printDate = null; this.templateId = -1L;
this.statusRemark = ""; this.templateName = "";
this.deviceId = -1L; this.mobile = "";
} }
} }
\ 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.record.model.PrintLogEntity; import com.mortals.xhx.module.record.model.PrintLogEntity;
/** /**
* 证照打印记录查询对象 * 证照打印记录查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
public class PrintLogQuery extends PrintLogEntity { public class PrintLogQuery extends PrintLogEntity {
/** 开始 序号,主键,自增长 */ /** 开始 序号,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -25,21 +25,6 @@ public class PrintLogQuery extends PrintLogEntity { ...@@ -25,21 +25,6 @@ public class PrintLogQuery extends PrintLogEntity {
/** 序号,主键,自增长排除列表 */ /** 序号,主键,自增长排除列表 */
private List <Long> idNotList; private List <Long> idNotList;
/** 开始 站点id */
private Long siteIdStart;
/** 结束 站点id */
private Long siteIdEnd;
/** 增加 站点id */
private Long siteIdIncrement;
/** 站点id列表 */
private List <Long> siteIdList;
/** 站点id排除列表 */
private List <Long> siteIdNotList;
/** 开始 证照目录ID */ /** 开始 证照目录ID */
private Long catalogIdStart; private Long catalogIdStart;
...@@ -75,26 +60,6 @@ public class PrintLogQuery extends PrintLogEntity { ...@@ -75,26 +60,6 @@ public class PrintLogQuery extends PrintLogEntity {
/** 证照编号排除列表 */ /** 证照编号排除列表 */
private List <String> certificateCodeNotList; private List <String> certificateCodeNotList;
/** 开始 证照目录模板ID */
private Long templateIdStart;
/** 结束 证照目录模板ID */
private Long templateIdEnd;
/** 增加 证照目录模板ID */
private Long templateIdIncrement;
/** 证照目录模板ID列表 */
private List <Long> templateIdList;
/** 证照目录模板ID排除列表 */
private List <Long> templateIdNotList;
/** 证照模板名称 */
private List<String> templateNameList;
/** 证照模板名称排除列表 */
private List <String> templateNameNotList;
/** 企业名称 */ /** 企业名称 */
private List<String> enterpriseNameList; private List<String> enterpriseNameList;
...@@ -203,6 +168,46 @@ public class PrintLogQuery extends PrintLogEntity { ...@@ -203,6 +168,46 @@ public class PrintLogQuery extends PrintLogEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 开始 站点id */
private Long siteIdStart;
/** 结束 站点id */
private Long siteIdEnd;
/** 增加 站点id */
private Long siteIdIncrement;
/** 站点id列表 */
private List <Long> siteIdList;
/** 站点id排除列表 */
private List <Long> siteIdNotList;
/** 开始 证照目录模板ID */
private Long templateIdStart;
/** 结束 证照目录模板ID */
private Long templateIdEnd;
/** 增加 证照目录模板ID */
private Long templateIdIncrement;
/** 证照目录模板ID列表 */
private List <Long> templateIdList;
/** 证照目录模板ID排除列表 */
private List <Long> templateIdNotList;
/** 证照模板名称 */
private List<String> templateNameList;
/** 证照模板名称排除列表 */
private List <String> templateNameNotList;
/** 手机号码 */
private List<String> mobileList;
/** 手机号码排除列表 */
private List <String> mobileNotList;
/** 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<PrintLogQuery> orConditionList; private List<PrintLogQuery> orConditionList;
...@@ -212,1773 +217,1824 @@ public class PrintLogQuery extends PrintLogEntity { ...@@ -212,1773 +217,1824 @@ public class PrintLogQuery extends PrintLogEntity {
public PrintLogQuery(){} public PrintLogQuery(){}
/** /**
* 获取 开始 序号,主键,自增长 * 获取 开始 序号,主键,自增长
* @return idStart * @return idStart
*/ */
public Long getIdStart(){ public Long getIdStart(){
return this.idStart; return this.idStart;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public void setIdStart(Long idStart){ public void setIdStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
} }
/** /**
* 获取 结束 序号,主键,自增长 * 获取 结束 序号,主键,自增长
* @return $idEnd * @return $idEnd
*/ */
public Long getIdEnd(){ public Long getIdEnd(){
return this.idEnd; return this.idEnd;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public void setIdEnd(Long idEnd){ public void setIdEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
} }
/** /**
* 获取 增加 序号,主键,自增长 * 获取 增加 序号,主键,自增长
* @return idIncrement * @return idIncrement
*/ */
public Long getIdIncrement(){ public Long getIdIncrement(){
return this.idIncrement; return this.idIncrement;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public void setIdIncrement(Long idIncrement){ public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idList * @return idList
*/ */
public List<Long> getIdList(){ public List<Long> getIdList(){
return this.idList; return this.idList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public void setIdList(List<Long> idList){ public void setIdList(List<Long> idList){
this.idList = idList; this.idList = idList;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idNotList * @return idNotList
*/ */
public List<Long> getIdNotList(){ public List<Long> getIdNotList(){
return this.idNotList; return this.idNotList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @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 catalogIdStart
*/ */
public Long getSiteIdStart(){
return this.siteIdStart;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
}
/**
* 获取 结束 站点id
* @return $siteIdEnd
*/
public Long getSiteIdEnd(){
return this.siteIdEnd;
}
/**
* 设置 结束 站点id
* @param siteIdEnd
*/
public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
}
/**
* 获取 增加 站点id
* @return siteIdIncrement
*/
public Long getSiteIdIncrement(){
return this.siteIdIncrement;
}
/**
* 设置 增加 站点id
* @param siteIdIncrement
*/
public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
}
/**
* 获取 站点id
* @return siteIdList
*/
public List<Long> getSiteIdList(){
return this.siteIdList;
}
/**
* 设置 站点id
* @param siteIdList
*/
public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
}
/**
* 获取 站点id
* @return siteIdNotList
*/
public List<Long> getSiteIdNotList(){
return this.siteIdNotList;
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
/**
* 获取 开始 证照目录ID
* @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 catalogCodeList * @return catalogCodeList
*/ */
public List<String> getCatalogCodeList(){ public List<String> getCatalogCodeList(){
return this.catalogCodeList; return this.catalogCodeList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeList * @param catalogCodeList
*/ */
public void setCatalogCodeList(List<String> catalogCodeList){ public void setCatalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList; this.catalogCodeList = catalogCodeList;
} }
/** /**
* 获取 证照目录编号 * 获取 证照目录编号
* @return catalogCodeNotList * @return catalogCodeNotList
*/ */
public List<String> getCatalogCodeNotList(){ public List<String> getCatalogCodeNotList(){
return this.catalogCodeNotList; return this.catalogCodeNotList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeNotList * @param catalogCodeNotList
*/ */
public void setCatalogCodeNotList(List<String> catalogCodeNotList){ public void setCatalogCodeNotList(List<String> catalogCodeNotList){
this.catalogCodeNotList = catalogCodeNotList; this.catalogCodeNotList = catalogCodeNotList;
} }
/** /**
* 获取 目录名称 * 获取 目录名称
* @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;
} }
/** /**
* 获取 证照名称 * 获取 证照名称
* @return certificateNameList * @return certificateNameList
*/ */
public List<String> getCertificateNameList(){ public List<String> getCertificateNameList(){
return this.certificateNameList; return this.certificateNameList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameList * @param certificateNameList
*/ */
public void setCertificateNameList(List<String> certificateNameList){ public void setCertificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList; this.certificateNameList = certificateNameList;
} }
/** /**
* 获取 证照名称 * 获取 证照名称
* @return certificateNameNotList * @return certificateNameNotList
*/ */
public List<String> getCertificateNameNotList(){ public List<String> getCertificateNameNotList(){
return this.certificateNameNotList; return this.certificateNameNotList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameNotList * @param certificateNameNotList
*/ */
public void setCertificateNameNotList(List<String> certificateNameNotList){ public void setCertificateNameNotList(List<String> certificateNameNotList){
this.certificateNameNotList = certificateNameNotList; this.certificateNameNotList = certificateNameNotList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeList * @return certificateCodeList
*/ */
public List<String> getCertificateCodeList(){ public List<String> getCertificateCodeList(){
return this.certificateCodeList; return this.certificateCodeList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeList * @param certificateCodeList
*/ */
public void setCertificateCodeList(List<String> certificateCodeList){ public void setCertificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList; this.certificateCodeList = certificateCodeList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeNotList * @return certificateCodeNotList
*/ */
public List<String> getCertificateCodeNotList(){ public List<String> getCertificateCodeNotList(){
return this.certificateCodeNotList; return this.certificateCodeNotList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeNotList * @param certificateCodeNotList
*/ */
public void setCertificateCodeNotList(List<String> certificateCodeNotList){ public void setCertificateCodeNotList(List<String> certificateCodeNotList){
this.certificateCodeNotList = certificateCodeNotList; this.certificateCodeNotList = certificateCodeNotList;
} }
/** /**
* 获取 开始 证照目录模板ID * 获取 企业名称
* @return templateIdStart * @return enterpriseNameList
*/ */
public Long getTemplateIdStart(){
return this.templateIdStart;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public void setTemplateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
}
/**
* 获取 结束 证照目录模板ID
* @return $templateIdEnd
*/
public Long getTemplateIdEnd(){
return this.templateIdEnd;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public void setTemplateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
}
/**
* 获取 增加 证照目录模板ID
* @return templateIdIncrement
*/
public Long getTemplateIdIncrement(){
return this.templateIdIncrement;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public void setTemplateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
}
/**
* 获取 证照目录模板ID
* @return templateIdList
*/
public List<Long> getTemplateIdList(){
return this.templateIdList;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public void setTemplateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
}
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public void setTemplateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
}
/**
* 获取 证照模板名称
* @return templateNameList
*/
public List<String> getTemplateNameList(){
return this.templateNameList;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public void setTemplateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
}
/**
* 获取 证照模板名称
* @return templateNameNotList
*/
public List<String> getTemplateNameNotList(){
return this.templateNameNotList;
}
/**
* 设置 证照模板名称
* @param templateNameNotList
*/
public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateNameNotList = templateNameNotList;
}
/**
* 获取 企业名称
* @return enterpriseNameList
*/
public List<String> getEnterpriseNameList(){ public List<String> getEnterpriseNameList(){
return this.enterpriseNameList; return this.enterpriseNameList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public void setEnterpriseNameList(List<String> enterpriseNameList){ public void setEnterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
} }
/** /**
* 获取 企业名称 * 获取 企业名称
* @return enterpriseNameNotList * @return enterpriseNameNotList
*/ */
public List<String> getEnterpriseNameNotList(){ public List<String> getEnterpriseNameNotList(){
return this.enterpriseNameNotList; return this.enterpriseNameNotList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameNotList * @param enterpriseNameNotList
*/ */
public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){ public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){
this.enterpriseNameNotList = enterpriseNameNotList; this.enterpriseNameNotList = enterpriseNameNotList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameList * @return holderNameList
*/ */
public List<String> getHolderNameList(){ public List<String> getHolderNameList(){
return this.holderNameList; return this.holderNameList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public void setHolderNameList(List<String> holderNameList){ public void setHolderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameNotList * @return holderNameNotList
*/ */
public List<String> getHolderNameNotList(){ public List<String> getHolderNameNotList(){
return this.holderNameNotList; return this.holderNameNotList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameNotList * @param holderNameNotList
*/ */
public void setHolderNameNotList(List<String> holderNameNotList){ public void setHolderNameNotList(List<String> holderNameNotList){
this.holderNameNotList = holderNameNotList; this.holderNameNotList = holderNameNotList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoList * @return holderIDCardNoList
*/ */
public List<String> getHolderIDCardNoList(){ public List<String> getHolderIDCardNoList(){
return this.holderIDCardNoList; return this.holderIDCardNoList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public void setHolderIDCardNoList(List<String> holderIDCardNoList){ public void setHolderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoNotList * @return holderIDCardNoNotList
*/ */
public List<String> getHolderIDCardNoNotList(){ public List<String> getHolderIDCardNoNotList(){
return this.holderIDCardNoNotList; return this.holderIDCardNoNotList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoNotList * @param holderIDCardNoNotList
*/ */
public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){ public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){
this.holderIDCardNoNotList = holderIDCardNoNotList; this.holderIDCardNoNotList = holderIDCardNoNotList;
} }
/** /**
* 获取 取件人姓名 * 获取 取件人姓名
* @return pickerNameList * @return pickerNameList
*/ */
public List<String> getPickerNameList(){ public List<String> getPickerNameList(){
return this.pickerNameList; return this.pickerNameList;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameList * @param pickerNameList
*/ */
public void setPickerNameList(List<String> pickerNameList){ public void setPickerNameList(List<String> pickerNameList){
this.pickerNameList = pickerNameList; this.pickerNameList = pickerNameList;
} }
/** /**
* 获取 取件人姓名 * 获取 取件人姓名
* @return pickerNameNotList * @return pickerNameNotList
*/ */
public List<String> getPickerNameNotList(){ public List<String> getPickerNameNotList(){
return this.pickerNameNotList; return this.pickerNameNotList;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameNotList * @param pickerNameNotList
*/ */
public void setPickerNameNotList(List<String> pickerNameNotList){ public void setPickerNameNotList(List<String> pickerNameNotList){
this.pickerNameNotList = pickerNameNotList; this.pickerNameNotList = pickerNameNotList;
} }
/** /**
* 获取 取件人证件号码 * 获取 取件人证件号码
* @return pickerIDCardNoList * @return pickerIDCardNoList
*/ */
public List<String> getPickerIDCardNoList(){ public List<String> getPickerIDCardNoList(){
return this.pickerIDCardNoList; return this.pickerIDCardNoList;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoList * @param pickerIDCardNoList
*/ */
public void setPickerIDCardNoList(List<String> pickerIDCardNoList){ public void setPickerIDCardNoList(List<String> pickerIDCardNoList){
this.pickerIDCardNoList = pickerIDCardNoList; this.pickerIDCardNoList = pickerIDCardNoList;
} }
/** /**
* 获取 取件人证件号码 * 获取 取件人证件号码
* @return pickerIDCardNoNotList * @return pickerIDCardNoNotList
*/ */
public List<String> getPickerIDCardNoNotList(){ public List<String> getPickerIDCardNoNotList(){
return this.pickerIDCardNoNotList; return this.pickerIDCardNoNotList;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoNotList * @param pickerIDCardNoNotList
*/ */
public void setPickerIDCardNoNotList(List<String> pickerIDCardNoNotList){ public void setPickerIDCardNoNotList(List<String> pickerIDCardNoNotList){
this.pickerIDCardNoNotList = pickerIDCardNoNotList; this.pickerIDCardNoNotList = pickerIDCardNoNotList;
} }
/** /**
* 获取 开始 打印状态1打印成功0失败 * 获取 开始 打印状态1打印成功0失败
* @return printStatusStart * @return printStatusStart
*/ */
public Integer getPrintStatusStart(){ public Integer getPrintStatusStart(){
return this.printStatusStart; return this.printStatusStart;
} }
/** /**
* 设置 开始 打印状态1打印成功0失败 * 设置 开始 打印状态1打印成功0失败
* @param printStatusStart * @param printStatusStart
*/ */
public void setPrintStatusStart(Integer printStatusStart){ public void setPrintStatusStart(Integer printStatusStart){
this.printStatusStart = printStatusStart; this.printStatusStart = printStatusStart;
} }
/** /**
* 获取 结束 打印状态1打印成功0失败 * 获取 结束 打印状态1打印成功0失败
* @return $printStatusEnd * @return $printStatusEnd
*/ */
public Integer getPrintStatusEnd(){ public Integer getPrintStatusEnd(){
return this.printStatusEnd; return this.printStatusEnd;
} }
/** /**
* 设置 结束 打印状态1打印成功0失败 * 设置 结束 打印状态1打印成功0失败
* @param printStatusEnd * @param printStatusEnd
*/ */
public void setPrintStatusEnd(Integer printStatusEnd){ public void setPrintStatusEnd(Integer printStatusEnd){
this.printStatusEnd = printStatusEnd; this.printStatusEnd = printStatusEnd;
} }
/** /**
* 获取 增加 打印状态1打印成功0失败 * 获取 增加 打印状态1打印成功0失败
* @return printStatusIncrement * @return printStatusIncrement
*/ */
public Integer getPrintStatusIncrement(){ public Integer getPrintStatusIncrement(){
return this.printStatusIncrement; return this.printStatusIncrement;
} }
/** /**
* 设置 增加 打印状态1打印成功0失败 * 设置 增加 打印状态1打印成功0失败
* @param printStatusIncrement * @param printStatusIncrement
*/ */
public void setPrintStatusIncrement(Integer printStatusIncrement){ public void setPrintStatusIncrement(Integer printStatusIncrement){
this.printStatusIncrement = printStatusIncrement; this.printStatusIncrement = printStatusIncrement;
} }
/** /**
* 获取 打印状态1打印成功0失败 * 获取 打印状态1打印成功0失败
* @return printStatusList * @return printStatusList
*/ */
public List<Integer> getPrintStatusList(){ public List<Integer> getPrintStatusList(){
return this.printStatusList; return this.printStatusList;
} }
/** /**
* 设置 打印状态1打印成功0失败 * 设置 打印状态1打印成功0失败
* @param printStatusList * @param printStatusList
*/ */
public void setPrintStatusList(List<Integer> printStatusList){ public void setPrintStatusList(List<Integer> printStatusList){
this.printStatusList = printStatusList; this.printStatusList = printStatusList;
} }
/** /**
* 获取 打印状态1打印成功0失败 * 获取 打印状态1打印成功0失败
* @return printStatusNotList * @return printStatusNotList
*/ */
public List<Integer> getPrintStatusNotList(){ public List<Integer> getPrintStatusNotList(){
return this.printStatusNotList; return this.printStatusNotList;
} }
/** /**
* 设置 打印状态1打印成功0失败 * 设置 打印状态1打印成功0失败
* @param printStatusNotList * @param printStatusNotList
*/ */
public void setPrintStatusNotList(List<Integer> printStatusNotList){ public void setPrintStatusNotList(List<Integer> printStatusNotList){
this.printStatusNotList = printStatusNotList; this.printStatusNotList = printStatusNotList;
} }
/** /**
* 获取 开始 打印时间 * 获取 开始 打印时间
* @return printDateStart * @return printDateStart
*/ */
public String getPrintDateStart(){ public String getPrintDateStart(){
return this.printDateStart; return this.printDateStart;
} }
/** /**
* 设置 开始 打印时间 * 设置 开始 打印时间
* @param printDateStart * @param printDateStart
*/ */
public void setPrintDateStart(String printDateStart){ public void setPrintDateStart(String printDateStart){
this.printDateStart = printDateStart; this.printDateStart = printDateStart;
} }
/** /**
* 获取 结束 打印时间 * 获取 结束 打印时间
* @return printDateEnd * @return printDateEnd
*/ */
public String getPrintDateEnd(){ public String getPrintDateEnd(){
return this.printDateEnd; return this.printDateEnd;
} }
/** /**
* 设置 结束 打印时间 * 设置 结束 打印时间
* @param printDateEnd * @param printDateEnd
*/ */
public void setPrintDateEnd(String printDateEnd){ public void setPrintDateEnd(String printDateEnd){
this.printDateEnd = printDateEnd; this.printDateEnd = printDateEnd;
} }
/** /**
* 获取 打印结果描述 * 获取 打印结果描述
* @return statusRemarkList * @return statusRemarkList
*/ */
public List<String> getStatusRemarkList(){ public List<String> getStatusRemarkList(){
return this.statusRemarkList; return this.statusRemarkList;
} }
/** /**
* 设置 打印结果描述 * 设置 打印结果描述
* @param statusRemarkList * @param statusRemarkList
*/ */
public void setStatusRemarkList(List<String> statusRemarkList){ public void setStatusRemarkList(List<String> statusRemarkList){
this.statusRemarkList = statusRemarkList; this.statusRemarkList = statusRemarkList;
} }
/** /**
* 获取 打印结果描述 * 获取 打印结果描述
* @return statusRemarkNotList * @return statusRemarkNotList
*/ */
public List<String> getStatusRemarkNotList(){ public List<String> getStatusRemarkNotList(){
return this.statusRemarkNotList; return this.statusRemarkNotList;
} }
/** /**
* 设置 打印结果描述 * 设置 打印结果描述
* @param statusRemarkNotList * @param statusRemarkNotList
*/ */
public void setStatusRemarkNotList(List<String> statusRemarkNotList){ public void setStatusRemarkNotList(List<String> statusRemarkNotList){
this.statusRemarkNotList = statusRemarkNotList; this.statusRemarkNotList = statusRemarkNotList;
} }
/** /**
* 获取 开始 打印设备 * 获取 开始 打印设备
* @return deviceIdStart * @return deviceIdStart
*/ */
public Long getDeviceIdStart(){ public Long getDeviceIdStart(){
return this.deviceIdStart; return this.deviceIdStart;
} }
/** /**
* 设置 开始 打印设备 * 设置 开始 打印设备
* @param deviceIdStart * @param deviceIdStart
*/ */
public void setDeviceIdStart(Long deviceIdStart){ public void setDeviceIdStart(Long deviceIdStart){
this.deviceIdStart = deviceIdStart; this.deviceIdStart = deviceIdStart;
} }
/** /**
* 获取 结束 打印设备 * 获取 结束 打印设备
* @return $deviceIdEnd * @return $deviceIdEnd
*/ */
public Long getDeviceIdEnd(){ public Long getDeviceIdEnd(){
return this.deviceIdEnd; return this.deviceIdEnd;
} }
/** /**
* 设置 结束 打印设备 * 设置 结束 打印设备
* @param deviceIdEnd * @param deviceIdEnd
*/ */
public void setDeviceIdEnd(Long deviceIdEnd){ public void setDeviceIdEnd(Long deviceIdEnd){
this.deviceIdEnd = deviceIdEnd; this.deviceIdEnd = deviceIdEnd;
} }
/** /**
* 获取 增加 打印设备 * 获取 增加 打印设备
* @return deviceIdIncrement * @return deviceIdIncrement
*/ */
public Long getDeviceIdIncrement(){ public Long getDeviceIdIncrement(){
return this.deviceIdIncrement; return this.deviceIdIncrement;
} }
/** /**
* 设置 增加 打印设备 * 设置 增加 打印设备
* @param deviceIdIncrement * @param deviceIdIncrement
*/ */
public void setDeviceIdIncrement(Long deviceIdIncrement){ public void setDeviceIdIncrement(Long deviceIdIncrement){
this.deviceIdIncrement = deviceIdIncrement; this.deviceIdIncrement = deviceIdIncrement;
} }
/** /**
* 获取 打印设备 * 获取 打印设备
* @return deviceIdList * @return deviceIdList
*/ */
public List<Long> getDeviceIdList(){ public List<Long> getDeviceIdList(){
return this.deviceIdList; return this.deviceIdList;
} }
/** /**
* 设置 打印设备 * 设置 打印设备
* @param deviceIdList * @param deviceIdList
*/ */
public void setDeviceIdList(List<Long> deviceIdList){ public void setDeviceIdList(List<Long> deviceIdList){
this.deviceIdList = deviceIdList; this.deviceIdList = deviceIdList;
} }
/** /**
* 获取 打印设备 * 获取 打印设备
* @return deviceIdNotList * @return deviceIdNotList
*/ */
public List<Long> getDeviceIdNotList(){ public List<Long> getDeviceIdNotList(){
return this.deviceIdNotList; return this.deviceIdNotList;
} }
/** /**
* 设置 打印设备 * 设置 打印设备
* @param deviceIdNotList * @param deviceIdNotList
*/ */
public void setDeviceIdNotList(List<Long> deviceIdNotList){ public void setDeviceIdNotList(List<Long> deviceIdNotList){
this.deviceIdNotList = deviceIdNotList; this.deviceIdNotList = deviceIdNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
*/ */
public Long getCreateUserIdStart(){ public Long getCreateUserIdStart(){
return this.createUserIdStart; return this.createUserIdStart;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public void setCreateUserIdStart(Long createUserIdStart){ public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
} }
/** /**
* 获取 结束 创建用户 * 获取 结束 创建用户
* @return $createUserIdEnd * @return $createUserIdEnd
*/ */
public Long getCreateUserIdEnd(){ public Long getCreateUserIdEnd(){
return this.createUserIdEnd; return this.createUserIdEnd;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public void setCreateUserIdEnd(Long createUserIdEnd){ public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
} }
/** /**
* 获取 增加 创建用户 * 获取 增加 创建用户
* @return createUserIdIncrement * @return createUserIdIncrement
*/ */
public Long getCreateUserIdIncrement(){ public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement; return this.createUserIdIncrement;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public void setCreateUserIdIncrement(Long createUserIdIncrement){ public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdList * @return createUserIdList
*/ */
public List<Long> getCreateUserIdList(){ public List<Long> getCreateUserIdList(){
return this.createUserIdList; return this.createUserIdList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public void setCreateUserIdList(List<Long> createUserIdList){ public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdNotList * @return createUserIdNotList
*/ */
public List<Long> getCreateUserIdNotList(){ public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList; return this.createUserIdNotList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public void setCreateUserIdNotList(List<Long> createUserIdNotList){ public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
} }
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
*/ */
public String getCreateTimeStart(){ public String getCreateTimeStart(){
return this.createTimeStart; return this.createTimeStart;
} }
/** /**
* 设置 开始 创建时间 * 设置 开始 创建时间
* @param createTimeStart * @param createTimeStart
*/ */
public void setCreateTimeStart(String createTimeStart){ public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart; this.createTimeStart = createTimeStart;
} }
/** /**
* 获取 结束 创建时间 * 获取 结束 创建时间
* @return createTimeEnd * @return createTimeEnd
*/ */
public String getCreateTimeEnd(){ public String getCreateTimeEnd(){
return this.createTimeEnd; return this.createTimeEnd;
} }
/** /**
* 设置 结束 创建时间 * 设置 结束 创建时间
* @param createTimeEnd * @param createTimeEnd
*/ */
public void setCreateTimeEnd(String createTimeEnd){ public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd; this.createTimeEnd = createTimeEnd;
} }
/** /**
* 获取 开始 更新用户 * 获取 开始 更新用户
* @return updateUserIdStart * @return updateUserIdStart
*/ */
public Long getUpdateUserIdStart(){ public Long getUpdateUserIdStart(){
return this.updateUserIdStart; return this.updateUserIdStart;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public void setUpdateUserIdStart(Long updateUserIdStart){ public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
} }
/** /**
* 获取 结束 更新用户 * 获取 结束 更新用户
* @return $updateUserIdEnd * @return $updateUserIdEnd
*/ */
public Long getUpdateUserIdEnd(){ public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd; return this.updateUserIdEnd;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public void setUpdateUserIdEnd(Long updateUserIdEnd){ public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
} }
/** /**
* 获取 增加 更新用户 * 获取 增加 更新用户
* @return updateUserIdIncrement * @return updateUserIdIncrement
*/ */
public Long getUpdateUserIdIncrement(){ public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement; return this.updateUserIdIncrement;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){ public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdList * @return updateUserIdList
*/ */
public List<Long> getUpdateUserIdList(){ public List<Long> getUpdateUserIdList(){
return this.updateUserIdList; return this.updateUserIdList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public void setUpdateUserIdList(List<Long> updateUserIdList){ public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdNotList * @return updateUserIdNotList
*/ */
public List<Long> getUpdateUserIdNotList(){ public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList; return this.updateUserIdNotList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){ public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
} }
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
*/ */
public String getUpdateTimeStart(){ public String getUpdateTimeStart(){
return this.updateTimeStart; return this.updateTimeStart;
} }
/** /**
* 设置 开始 更新时间 * 设置 开始 更新时间
* @param updateTimeStart * @param updateTimeStart
*/ */
public void setUpdateTimeStart(String updateTimeStart){ public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart; this.updateTimeStart = updateTimeStart;
} }
/** /**
* 获取 结束 更新时间 * 获取 结束 更新时间
* @return updateTimeEnd * @return updateTimeEnd
*/ */
public String getUpdateTimeEnd(){ public String getUpdateTimeEnd(){
return this.updateTimeEnd; return this.updateTimeEnd;
} }
/** /**
* 设置 结束 更新时间 * 设置 结束 更新时间
* @param updateTimeEnd * @param updateTimeEnd
*/ */
public void setUpdateTimeEnd(String updateTimeEnd){ public void setUpdateTimeEnd(String updateTimeEnd){
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/** /**
* 设置 序号,主键,自增长 * 获取 开始 站点id
* @param id * @return siteIdStart
*/ */
public PrintLogQuery id(Long id){ public Long getSiteIdStart(){
setId(id); return this.siteIdStart;
return this;
}
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public PrintLogQuery idStart(Long idStart){
this.idStart = idStart;
return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 开始 站点id
* @param idEnd * @param siteIdStart
*/ */
public PrintLogQuery idEnd(Long idEnd){ public void setSiteIdStart(Long siteIdStart){
this.idEnd = idEnd; this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 获取 结束 站点id
* @param idIncrement * @return $siteIdEnd
*/ */
public PrintLogQuery idIncrement(Long idIncrement){ public Long getSiteIdEnd(){
this.idIncrement = idIncrement; return this.siteIdEnd;
return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 结束 站点id
* @param idList * @param siteIdEnd
*/ */
public PrintLogQuery idList(List<Long> idList){ public void setSiteIdEnd(Long siteIdEnd){
this.idList = idList; this.siteIdEnd = siteIdEnd;
return this; }
}
/**
* 设置 序号,主键,自增长
* @param idNotList
*/
public PrintLogQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
}
/** /**
* 设置 站点id * 获取 增加 站点id
* @param siteId * @return siteIdIncrement
*/ */
public PrintLogQuery siteId(Long siteId){ public Long getSiteIdIncrement(){
setSiteId(siteId); return this.siteIdIncrement;
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public PrintLogQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 结束 站点id * 设置 增加 站点id
* @param siteIdEnd * @param siteIdIncrement
*/ */
public PrintLogQuery siteIdEnd(Long siteIdEnd){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdEnd = siteIdEnd; this.siteIdIncrement = siteIdIncrement;
return this;
} }
/** /**
* 设置 增加 站点id * 获取 站点id
* @param siteIdIncrement * @return siteIdList
*/ */
public PrintLogQuery siteIdIncrement(Long siteIdIncrement){ public List<Long> getSiteIdList(){
this.siteIdIncrement = siteIdIncrement; return this.siteIdList;
return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdList * @param siteIdList
*/ */
public PrintLogQuery siteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; }
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public PrintLogQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/** /**
* 设置 证照目录ID * 获取 站点id
* @param catalogId * @return siteIdNotList
*/ */
public PrintLogQuery catalogId(Long catalogId){ public List<Long> getSiteIdNotList(){
setCatalogId(catalogId); return this.siteIdNotList;
return this;
}
/**
* 设置 开始 证照目录ID
* @param catalogIdStart
*/
public PrintLogQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart;
return this;
} }
/** /**
* 设置 结束 证照目录ID * 设置 站点id
* @param catalogIdEnd * @param siteIdNotList
*/ */
public PrintLogQuery catalogIdEnd(Long catalogIdEnd){ public void setSiteIdNotList(List<Long> siteIdNotList){
this.catalogIdEnd = catalogIdEnd; this.siteIdNotList = siteIdNotList;
return this;
} }
/** /**
* 设置 增加 证照目录ID * 获取 开始 证照目录模板ID
* @param catalogIdIncrement * @return templateIdStart
*/ */
public PrintLogQuery catalogIdIncrement(Long catalogIdIncrement){ public Long getTemplateIdStart(){
this.catalogIdIncrement = catalogIdIncrement; return this.templateIdStart;
return this;
} }
/** /**
* 设置 证照目录ID * 设置 开始 证照目录模板ID
* @param catalogIdList * @param templateIdStart
*/ */
public PrintLogQuery catalogIdList(List<Long> catalogIdList){ public void setTemplateIdStart(Long templateIdStart){
this.catalogIdList = catalogIdList; this.templateIdStart = templateIdStart;
return this;
}
/**
* 设置 证照目录ID
* @param catalogIdNotList
*/
public PrintLogQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList;
return this;
}
/**
* 设置 证照目录编号
* @param catalogCode
*/
public PrintLogQuery catalogCode(String catalogCode){
setCatalogCode(catalogCode);
return this;
} }
/** /**
* 设置 证照目录编号 * 获取 结束 证照目录模板ID
* @param catalogCodeList * @return $templateIdEnd
*/ */
public PrintLogQuery catalogCodeList(List<String> catalogCodeList){ public Long getTemplateIdEnd(){
this.catalogCodeList = catalogCodeList; return this.templateIdEnd;
return this;
} }
/**
/** * 设置 结束 证照目录模板ID
* 设置 目录名称 * @param templateIdEnd
* @param catalogName */
*/ public void setTemplateIdEnd(Long templateIdEnd){
public PrintLogQuery catalogName(String catalogName){ this.templateIdEnd = templateIdEnd;
setCatalogName(catalogName);
return this;
} }
/** /**
* 设置 目录名称 * 获取 增加 证照目录模板ID
* @param catalogNameList * @return templateIdIncrement
*/ */
public PrintLogQuery catalogNameList(List<String> catalogNameList){ public Long getTemplateIdIncrement(){
this.catalogNameList = catalogNameList; return this.templateIdIncrement;
return this;
} }
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public void setTemplateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
}
/** /**
* 设置 证照名称 * 获取 证照目录模板ID
* @param certificateName * @return templateIdList
*/ */
public PrintLogQuery certificateName(String certificateName){ public List<Long> getTemplateIdList(){
setCertificateName(certificateName); return this.templateIdList;
return this;
} }
/** /**
* 设置 证照名称 * 设置 证照目录模板ID
* @param certificateNameList * @param templateIdList
*/ */
public PrintLogQuery certificateNameList(List<String> certificateNameList){ public void setTemplateIdList(List<Long> templateIdList){
this.certificateNameList = certificateNameList; this.templateIdList = templateIdList;
return this;
} }
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/** /**
* 设置 证照编号 * 设置 证照目录模板ID
* @param certificateCode * @param templateIdNotList
*/ */
public PrintLogQuery certificateCode(String certificateCode){ public void setTemplateIdNotList(List<Long> templateIdNotList){
setCertificateCode(certificateCode); this.templateIdNotList = templateIdNotList;
return this;
} }
/** /**
* 设置 证照编号 * 获取 证照模板名称
* @param certificateCodeList * @return templateNameList
*/ */
public PrintLogQuery certificateCodeList(List<String> certificateCodeList){ public List<String> getTemplateNameList(){
this.certificateCodeList = certificateCodeList; return this.templateNameList;
return this;
} }
/** /**
* 设置 证照目录模板ID * 设置 证照模板名称
* @param templateId * @param templateNameList
*/ */
public PrintLogQuery templateId(Long templateId){ public void setTemplateNameList(List<String> templateNameList){
setTemplateId(templateId); this.templateNameList = templateNameList;
return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public PrintLogQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
} }
/** /**
* 设置 结束 证照目录模板ID * 获取 证照模板名称
* @param templateIdEnd * @return templateNameNotList
*/ */
public PrintLogQuery templateIdEnd(Long templateIdEnd){ public List<String> getTemplateNameNotList(){
this.templateIdEnd = templateIdEnd; return this.templateNameNotList;
return this;
} }
/** /**
* 设置 增加 证照目录模板ID * 设置 证照模板名称
* @param templateIdIncrement * @param templateNameNotList
*/ */
public PrintLogQuery templateIdIncrement(Long templateIdIncrement){ public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateIdIncrement = templateIdIncrement; this.templateNameNotList = templateNameNotList;
return this;
} }
/** /**
* 设置 证照目录模板ID * 获取 手机号码
* @param templateIdList * @return mobileList
*/ */
public PrintLogQuery templateIdList(List<Long> templateIdList){ public List<String> getMobileList(){
this.templateIdList = templateIdList; return this.mobileList;
return this; }
}
/**
/** * 设置 手机号码
* 设置 证照目录模板ID * @param mobileList
* @param templateIdNotList */
*/ public void setMobileList(List<String> mobileList){
public PrintLogQuery templateIdNotList(List<Long> templateIdNotList){ this.mobileList = mobileList;
this.templateIdNotList = templateIdNotList; }
/**
* 获取 手机号码
* @return mobileNotList
*/
public List<String> getMobileNotList(){
return this.mobileNotList;
}
/**
* 设置 手机号码
* @param mobileNotList
*/
public void setMobileNotList(List<String> mobileNotList){
this.mobileNotList = mobileNotList;
}
/**
* 设置 序号,主键,自增长
* @param id
*/
public PrintLogQuery id(Long id){
setId(id);
return this; return this;
} }
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public PrintLogQuery idStart(Long idStart){
this.idStart = idStart;
return this;
}
/** /**
* 设置 证照模板名称 * 设置 结束 序号,主键,自增长
* @param templateName * @param idEnd
*/ */
public PrintLogQuery templateName(String templateName){ public PrintLogQuery idEnd(Long idEnd){
setTemplateName(templateName); this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 证照模板名称 * 设置 增加 序号,主键,自增长
* @param templateNameList * @param idIncrement
*/ */
public PrintLogQuery templateNameList(List<String> templateNameList){ public PrintLogQuery idIncrement(Long idIncrement){
this.templateNameList = templateNameList; this.idIncrement = idIncrement;
return this; return this;
}
/**
* 设置 序号,主键,自增长
* @param idList
*/
public PrintLogQuery idList(List<Long> idList){
this.idList = idList;
return this;
}
/**
* 设置 序号,主键,自增长
* @param idNotList
*/
public PrintLogQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
} }
/**
* 设置 证照目录ID
* @param catalogId
*/
public PrintLogQuery catalogId(Long catalogId){
setCatalogId(catalogId);
return this;
}
/**
* 设置 开始 证照目录ID
* @param catalogIdStart
*/
public PrintLogQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart;
return this;
}
/**
* 设置 结束 证照目录ID
* @param catalogIdEnd
*/
public PrintLogQuery catalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd;
return this;
}
/**
* 设置 增加 证照目录ID
* @param catalogIdIncrement
*/
public PrintLogQuery catalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement;
return this;
}
/**
* 设置 证照目录ID
* @param catalogIdList
*/
public PrintLogQuery catalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList;
return this;
}
/**
* 设置 证照目录ID
* @param catalogIdNotList
*/
public PrintLogQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList;
return this;
}
/**
* 设置 证照目录编号
* @param catalogCode
*/
public PrintLogQuery catalogCode(String catalogCode){
setCatalogCode(catalogCode);
return this;
}
/**
* 设置 证照目录编号
* @param catalogCodeList
*/
public PrintLogQuery catalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList;
return this;
}
/**
* 设置 目录名称
* @param catalogName
*/
public PrintLogQuery catalogName(String catalogName){
setCatalogName(catalogName);
return this;
}
/**
* 设置 目录名称
* @param catalogNameList
*/
public PrintLogQuery catalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList;
return this;
}
/**
* 设置 证照名称
* @param certificateName
*/
public PrintLogQuery certificateName(String certificateName){
setCertificateName(certificateName);
return this;
}
/**
* 设置 证照名称
* @param certificateNameList
*/
public PrintLogQuery certificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList;
return this;
}
/**
* 设置 证照编号
* @param certificateCode
*/
public PrintLogQuery certificateCode(String certificateCode){
setCertificateCode(certificateCode);
return this;
}
/**
* 设置 证照编号
* @param certificateCodeList
*/
public PrintLogQuery certificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList;
return this;
}
/**
* 设置 企业名称 /**
* @param enterpriseName * 设置 企业名称
*/ * @param enterpriseName
*/
public PrintLogQuery enterpriseName(String enterpriseName){ public PrintLogQuery enterpriseName(String enterpriseName){
setEnterpriseName(enterpriseName); setEnterpriseName(enterpriseName);
return this; return this;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public PrintLogQuery enterpriseNameList(List<String> enterpriseNameList){ public PrintLogQuery enterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderName * @param holderName
*/ */
public PrintLogQuery holderName(String holderName){ public PrintLogQuery holderName(String holderName){
setHolderName(holderName); setHolderName(holderName);
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public PrintLogQuery holderNameList(List<String> holderNameList){ public PrintLogQuery holderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNo * @param holderIDCardNo
*/ */
public PrintLogQuery holderIDCardNo(String holderIDCardNo){ public PrintLogQuery holderIDCardNo(String holderIDCardNo){
setHolderIDCardNo(holderIDCardNo); setHolderIDCardNo(holderIDCardNo);
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public PrintLogQuery holderIDCardNoList(List<String> holderIDCardNoList){ public PrintLogQuery holderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
return this; return this;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerName * @param pickerName
*/ */
public PrintLogQuery pickerName(String pickerName){ public PrintLogQuery pickerName(String pickerName){
setPickerName(pickerName); setPickerName(pickerName);
return this; return this;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameList * @param pickerNameList
*/ */
public PrintLogQuery pickerNameList(List<String> pickerNameList){ public PrintLogQuery pickerNameList(List<String> pickerNameList){
this.pickerNameList = pickerNameList; this.pickerNameList = pickerNameList;
return this; return this;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNo * @param pickerIDCardNo
*/ */
public PrintLogQuery pickerIDCardNo(String pickerIDCardNo){ public PrintLogQuery pickerIDCardNo(String pickerIDCardNo){
setPickerIDCardNo(pickerIDCardNo); setPickerIDCardNo(pickerIDCardNo);
return this; return this;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoList * @param pickerIDCardNoList
*/ */
public PrintLogQuery pickerIDCardNoList(List<String> pickerIDCardNoList){ public PrintLogQuery pickerIDCardNoList(List<String> pickerIDCardNoList){
this.pickerIDCardNoList = pickerIDCardNoList; this.pickerIDCardNoList = pickerIDCardNoList;
return this; return this;
} }
/** /**
* 设置 打印状态1打印成功0失败 * 设置 打印状态1打印成功0失败
* @param printStatus * @param printStatus
*/ */
public PrintLogQuery printStatus(Integer printStatus){ public PrintLogQuery printStatus(Integer printStatus){
setPrintStatus(printStatus); setPrintStatus(printStatus);
return this; return this;
} }
/** /**
* 设置 开始 打印状态1打印成功0失败 * 设置 开始 打印状态1打印成功0失败
* @param printStatusStart * @param printStatusStart
*/ */
public PrintLogQuery printStatusStart(Integer printStatusStart){ public PrintLogQuery printStatusStart(Integer printStatusStart){
this.printStatusStart = printStatusStart; this.printStatusStart = printStatusStart;
return this; return this;
} }
/** /**
* 设置 结束 打印状态1打印成功0失败 * 设置 结束 打印状态1打印成功0失败
* @param printStatusEnd * @param printStatusEnd
*/ */
public PrintLogQuery printStatusEnd(Integer printStatusEnd){ public PrintLogQuery printStatusEnd(Integer printStatusEnd){
this.printStatusEnd = printStatusEnd; this.printStatusEnd = printStatusEnd;
return this; return this;
} }
/** /**
* 设置 增加 打印状态1打印成功0失败 * 设置 增加 打印状态1打印成功0失败
* @param printStatusIncrement * @param printStatusIncrement
*/ */
public PrintLogQuery printStatusIncrement(Integer printStatusIncrement){ public PrintLogQuery printStatusIncrement(Integer printStatusIncrement){
this.printStatusIncrement = printStatusIncrement; this.printStatusIncrement = printStatusIncrement;
return this; return this;
} }
/** /**
* 设置 打印状态1打印成功0失败 * 设置 打印状态1打印成功0失败
* @param printStatusList * @param printStatusList
*/ */
public PrintLogQuery printStatusList(List<Integer> printStatusList){ public PrintLogQuery printStatusList(List<Integer> printStatusList){
this.printStatusList = printStatusList; this.printStatusList = printStatusList;
return this; return this;
} }
/** /**
* 设置 打印状态1打印成功0失败 * 设置 打印状态1打印成功0失败
* @param printStatusNotList * @param printStatusNotList
*/ */
public PrintLogQuery printStatusNotList(List<Integer> printStatusNotList){ public PrintLogQuery printStatusNotList(List<Integer> printStatusNotList){
this.printStatusNotList = printStatusNotList; this.printStatusNotList = printStatusNotList;
return this; return this;
} }
/** /**
* 设置 打印结果描述 * 设置 打印结果描述
* @param statusRemark * @param statusRemark
*/ */
public PrintLogQuery statusRemark(String statusRemark){ public PrintLogQuery statusRemark(String statusRemark){
setStatusRemark(statusRemark); setStatusRemark(statusRemark);
return this; return this;
} }
/** /**
* 设置 打印结果描述 * 设置 打印结果描述
* @param statusRemarkList * @param statusRemarkList
*/ */
public PrintLogQuery statusRemarkList(List<String> statusRemarkList){ public PrintLogQuery statusRemarkList(List<String> statusRemarkList){
this.statusRemarkList = statusRemarkList; this.statusRemarkList = statusRemarkList;
return this; return this;
} }
/** /**
* 设置 打印设备 * 设置 打印设备
* @param deviceId * @param deviceId
*/ */
public PrintLogQuery deviceId(Long deviceId){ public PrintLogQuery deviceId(Long deviceId){
setDeviceId(deviceId); setDeviceId(deviceId);
return this; return this;
} }
/** /**
* 设置 开始 打印设备 * 设置 开始 打印设备
* @param deviceIdStart * @param deviceIdStart
*/ */
public PrintLogQuery deviceIdStart(Long deviceIdStart){ public PrintLogQuery deviceIdStart(Long deviceIdStart){
this.deviceIdStart = deviceIdStart; this.deviceIdStart = deviceIdStart;
return this; return this;
} }
/** /**
* 设置 结束 打印设备 * 设置 结束 打印设备
* @param deviceIdEnd * @param deviceIdEnd
*/ */
public PrintLogQuery deviceIdEnd(Long deviceIdEnd){ public PrintLogQuery deviceIdEnd(Long deviceIdEnd){
this.deviceIdEnd = deviceIdEnd; this.deviceIdEnd = deviceIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 打印设备 * 设置 增加 打印设备
* @param deviceIdIncrement * @param deviceIdIncrement
*/ */
public PrintLogQuery deviceIdIncrement(Long deviceIdIncrement){ public PrintLogQuery deviceIdIncrement(Long deviceIdIncrement){
this.deviceIdIncrement = deviceIdIncrement; this.deviceIdIncrement = deviceIdIncrement;
return this; return this;
} }
/** /**
* 设置 打印设备 * 设置 打印设备
* @param deviceIdList * @param deviceIdList
*/ */
public PrintLogQuery deviceIdList(List<Long> deviceIdList){ public PrintLogQuery deviceIdList(List<Long> deviceIdList){
this.deviceIdList = deviceIdList; this.deviceIdList = deviceIdList;
return this; return this;
} }
/** /**
* 设置 打印设备 * 设置 打印设备
* @param deviceIdNotList * @param deviceIdNotList
*/ */
public PrintLogQuery deviceIdNotList(List<Long> deviceIdNotList){ public PrintLogQuery deviceIdNotList(List<Long> deviceIdNotList){
this.deviceIdNotList = deviceIdNotList; this.deviceIdNotList = deviceIdNotList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public PrintLogQuery createUserId(Long createUserId){ public PrintLogQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public PrintLogQuery createUserIdStart(Long createUserIdStart){ public PrintLogQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public PrintLogQuery createUserIdEnd(Long createUserIdEnd){ public PrintLogQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public PrintLogQuery createUserIdIncrement(Long createUserIdIncrement){ public PrintLogQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public PrintLogQuery createUserIdList(List<Long> createUserIdList){ public PrintLogQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public PrintLogQuery createUserIdNotList(List<Long> createUserIdNotList){ public PrintLogQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public PrintLogQuery updateUserId(Long updateUserId){ public PrintLogQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public PrintLogQuery updateUserIdStart(Long updateUserIdStart){ public PrintLogQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public PrintLogQuery updateUserIdEnd(Long updateUserIdEnd){ public PrintLogQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public PrintLogQuery updateUserIdIncrement(Long updateUserIdIncrement){ public PrintLogQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public PrintLogQuery updateUserIdList(List<Long> updateUserIdList){ public PrintLogQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public PrintLogQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public PrintLogQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 站点id
* @param siteId
*/
public PrintLogQuery siteId(Long siteId){
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public PrintLogQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
}
/**
* 设置 结束 站点id
* @param siteIdEnd
*/
public PrintLogQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
return this;
}
/**
* 设置 增加 站点id
* @param siteIdIncrement
*/
public PrintLogQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
return this;
}
/**
* 设置 站点id
* @param siteIdList
*/
public PrintLogQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
return this;
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public PrintLogQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateId
*/
public PrintLogQuery templateId(Long templateId){
setTemplateId(templateId);
return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public PrintLogQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public PrintLogQuery templateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
return this;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public PrintLogQuery templateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public PrintLogQuery templateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public PrintLogQuery templateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
return this;
}
/**
* 设置 证照模板名称
* @param templateName
*/
public PrintLogQuery templateName(String templateName){
setTemplateName(templateName);
return this;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public PrintLogQuery templateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
return this;
}
/**
* 设置 手机号码
* @param mobile
*/
public PrintLogQuery mobile(String mobile){
setMobile(mobile);
return this;
}
/**
* 设置 手机号码
* @param mobileList
*/
public PrintLogQuery mobileList(List<String> mobileList){
this.mobileList = mobileList;
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<PrintLogQuery> getOrConditionList(){ public List<PrintLogQuery> 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<PrintLogQuery> orConditionList){ public void setOrConditionList(List<PrintLogQuery> 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<PrintLogQuery> getAndConditionList(){ public List<PrintLogQuery> 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<PrintLogQuery> andConditionList){ public void setAndConditionList(List<PrintLogQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -7,94 +7,98 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -7,94 +7,98 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.record.model.vo.PrintWaitQueueVo; import com.mortals.xhx.module.record.model.vo.PrintWaitQueueVo;
import lombok.Data; import lombok.Data;
/** /**
* 证照打印记录实体对象 * 证照打印记录实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
@Data @Data
public class PrintWaitQueueEntity extends PrintWaitQueueVo { public class PrintWaitQueueEntity extends PrintWaitQueueVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点id * 证照档案ID
*/ */
private Long siteId;
/**
* 证照档案ID
*/
private Long recordId; private Long recordId;
/** /**
* 申请ID * 申请ID
*/ */
private Long applyId; private Long applyId;
/** /**
* 证照目录ID * 证照目录ID
*/ */
private Long catalogId; private Long catalogId;
/** /**
* 证照目录编号 * 证照目录编号
*/ */
private String catalogCode; private String catalogCode;
/** /**
* 目录名称 * 目录名称
*/ */
private String catalogName; private String catalogName;
/** /**
* 证照目录模板ID * 证照名称
*/ */
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 证照名称
*/
private String certificateName; private String certificateName;
/** /**
* 证照编号 * 证照编号
*/ */
private String certificateCode; private String certificateCode;
/** /**
* 企业名称 * 企业名称
*/ */
private String enterpriseName; private String enterpriseName;
/** /**
* 持有者姓名 * 持有者姓名
*/ */
private String holderName; private String holderName;
/** /**
* 持有者证件号码 * 持有者证件号码
*/ */
private String holderIDCardNo; private String holderIDCardNo;
/** /**
* 取件人姓名 * 取件人姓名
*/ */
private String pickerName; private String pickerName;
/** /**
* 取件人证件号码 * 取件人证件号码
*/ */
private String pickerIDCardNo; private String pickerIDCardNo;
/** /**
* 证件预览地址 * 证件预览地址
*/ */
private String previewUrl; private String previewUrl;
/** /**
* 证件附件地址 * 证件附件地址
*/ */
private String certificateUrl; private String certificateUrl;
/** /**
* 是否完成打印0否1是 * 是否完成打印0否1是
*/ */
private Integer printStatus; private Integer printStatus;
/** /**
* 允许打印次数 * 允许打印次数
*/ */
private Integer total; private Integer total;
/**
* 站点id
*/
private Long siteId;
/**
* 证照目录模板ID
*/
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 手机号码
*/
private String mobile;
@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) {
...@@ -102,7 +106,7 @@ public class PrintWaitQueueEntity extends PrintWaitQueueVo { ...@@ -102,7 +106,7 @@ public class PrintWaitQueueEntity extends PrintWaitQueueVo {
if (obj instanceof PrintWaitQueueEntity) { if (obj instanceof PrintWaitQueueEntity) {
PrintWaitQueueEntity tmp = (PrintWaitQueueEntity) obj; PrintWaitQueueEntity tmp = (PrintWaitQueueEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
...@@ -110,42 +114,44 @@ public class PrintWaitQueueEntity extends PrintWaitQueueVo { ...@@ -110,42 +114,44 @@ public class PrintWaitQueueEntity extends PrintWaitQueueVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.recordId = -1L;
this.applyId = -1L;
this.recordId = -1L; this.catalogId = -1L;
this.applyId = -1L; this.catalogCode = "";
this.catalogId = -1L; this.catalogName = "";
this.catalogCode = ""; this.certificateName = "";
this.catalogName = ""; this.certificateCode = "";
this.templateId = -1L; this.enterpriseName = "";
this.templateName = ""; this.holderName = "";
this.certificateName = ""; this.holderIDCardNo = "";
this.certificateCode = ""; this.pickerName = "";
this.enterpriseName = ""; this.pickerIDCardNo = "";
this.holderName = ""; this.previewUrl = "";
this.holderIDCardNo = ""; this.certificateUrl = "";
this.pickerName = ""; this.printStatus = 0;
this.pickerIDCardNo = ""; this.total = 1;
this.previewUrl = ""; this.siteId = -1L;
this.certificateUrl = ""; this.templateId = -1L;
this.printStatus = 0; this.templateName = "";
this.total = 1; this.mobile = "";
} }
} }
\ No newline at end of file
...@@ -3,42 +3,12 @@ package com.mortals.xhx.module.record.model; ...@@ -3,42 +3,12 @@ package com.mortals.xhx.module.record.model;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.record.model.PrintWaitQueueEntity; import com.mortals.xhx.module.record.model.PrintWaitQueueEntity;
/** /**
* 证照打印记录查询对象 * 证照打印记录查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
public class PrintWaitQueueQuery extends PrintWaitQueueEntity { public class PrintWaitQueueQuery extends PrintWaitQueueEntity {
/** 开始 序号,主键,自增长 */
private Long idStart;
/** 结束 序号,主键,自增长 */
private Long idEnd;
/** 增加 序号,主键,自增长 */
private Long idIncrement;
/** 序号,主键,自增长列表 */
private List <Long> idList;
/** 序号,主键,自增长排除列表 */
private List <Long> idNotList;
/** 开始 站点id */
private Long siteIdStart;
/** 结束 站点id */
private Long siteIdEnd;
/** 增加 站点id */
private Long siteIdIncrement;
/** 站点id列表 */
private List <Long> siteIdList;
/** 站点id排除列表 */
private List <Long> siteIdNotList;
/** 开始 证照档案ID */ /** 开始 证照档案ID */
private Long recordIdStart; private Long recordIdStart;
...@@ -94,26 +64,6 @@ public class PrintWaitQueueQuery extends PrintWaitQueueEntity { ...@@ -94,26 +64,6 @@ public class PrintWaitQueueQuery extends PrintWaitQueueEntity {
/** 目录名称排除列表 */ /** 目录名称排除列表 */
private List <String> catalogNameNotList; private List <String> catalogNameNotList;
/** 开始 证照目录模板ID */
private Long templateIdStart;
/** 结束 证照目录模板ID */
private Long templateIdEnd;
/** 增加 证照目录模板ID */
private Long templateIdIncrement;
/** 证照目录模板ID列表 */
private List <Long> templateIdList;
/** 证照目录模板ID排除列表 */
private List <Long> templateIdNotList;
/** 证照模板名称 */
private List<String> templateNameList;
/** 证照模板名称排除列表 */
private List <String> templateNameNotList;
/** 证照名称 */ /** 证照名称 */
private List<String> certificateNameList; private List<String> certificateNameList;
...@@ -231,2070 +181,2176 @@ public class PrintWaitQueueQuery extends PrintWaitQueueEntity { ...@@ -231,2070 +181,2176 @@ public class PrintWaitQueueQuery extends PrintWaitQueueEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */ /** 开始 站点id */
private List<PrintWaitQueueQuery> orConditionList; private Long siteIdStart;
/** AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) */
private List<PrintWaitQueueQuery> andConditionList;
public PrintWaitQueueQuery(){}
/**
* 获取 开始 序号,主键,自增长
* @return idStart
*/
public Long getIdStart(){
return this.idStart;
}
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public void setIdStart(Long idStart){
this.idStart = idStart;
}
/**
* 获取 结束 序号,主键,自增长
* @return $idEnd
*/
public Long getIdEnd(){
return this.idEnd;
}
/** /** 结束 站点id */
* 设置 结束 序号,主键,自增长 private Long siteIdEnd;
* @param idEnd
*/
public void setIdEnd(Long idEnd){
this.idEnd = idEnd;
}
/** /** 增加 站点id */
* 获取 增加 序号,主键,自增长 private Long siteIdIncrement;
* @return idIncrement
*/
public Long getIdIncrement(){
return this.idIncrement;
}
/** /** 站点id列表 */
* 设置 增加 序号,主键,自增长 private List <Long> siteIdList;
* @param idIncrement
*/
public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement;
}
/** /** 站点id排除列表 */
* 获取 序号,主键,自增长 private List <Long> siteIdNotList;
* @return idList
*/
public List<Long> getIdList(){
return this.idList;
}
/** /** 开始 序号,主键,自增长 */
* 设置 序号,主键,自增长 private Long IdStart;
* @param idList
*/
public void setIdList(List<Long> idList){
this.idList = idList;
}
/** /** 结束 序号,主键,自增长 */
* 获取 序号,主键,自增长 private Long IdEnd;
* @return idNotList
*/
public List<Long> getIdNotList(){
return this.idNotList;
}
/** /** 增加 序号,主键,自增长 */
* 设置 序号,主键,自增长 private Long IdIncrement;
* @param idNotList
*/
public void setIdNotList(List<Long> idNotList){
this.idNotList = idNotList;
}
/** 序号,主键,自增长列表 */
private List <Long> IdList;
/** /** 序号,主键,自增长排除列表 */
* 获取 开始 站点id private List <Long> IdNotList;
* @return siteIdStart
*/
public Long getSiteIdStart(){
return this.siteIdStart;
}
/** /** 开始 证照目录模板ID */
* 设置 开始 站点id private Long templateIdStart;
* @param siteIdStart
*/
public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
}
/** /** 结束 证照目录模板ID */
* 获取 结束 站点id private Long templateIdEnd;
* @return $siteIdEnd
*/
public Long getSiteIdEnd(){
return this.siteIdEnd;
}
/** /** 增加 证照目录模板ID */
* 设置 结束 站点id private Long templateIdIncrement;
* @param siteIdEnd
*/
public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
}
/** /** 证照目录模板ID列表 */
* 获取 增加 站点id private List <Long> templateIdList;
* @return siteIdIncrement
*/
public Long getSiteIdIncrement(){
return this.siteIdIncrement;
}
/** /** 证照目录模板ID排除列表 */
* 设置 增加 站点id private List <Long> templateIdNotList;
* @param siteIdIncrement
*/
public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
}
/** /** 证照模板名称 */
* 获取 站点id private List<String> templateNameList;
* @return siteIdList
*/
public List<Long> getSiteIdList(){
return this.siteIdList;
}
/** /** 证照模板名称排除列表 */
* 设置 站点id private List <String> templateNameNotList;
* @param siteIdList /** 手机号码 */
*/ private List<String> mobileList;
public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
}
/** /** 手机号码排除列表 */
* 获取 站点id private List <String> mobileNotList;
* @return siteIdNotList /** OR条件集合,列表项之间是OR,项内容之间是AND,如:(list[0].1 and list[0].2) or (list[1].3 and list[1].4) */
*/ private List<PrintWaitQueueQuery> orConditionList;
public List<Long> getSiteIdNotList(){
return this.siteIdNotList;
}
/** /** AND条件集合,列表项之间是AND,项内容之间是OR,如:(list[0].1 or list[0].2) and (list[1].3 or list[1].4) */
* 设置 站点id private List<PrintWaitQueueQuery> andConditionList;
* @param siteIdNotList
*/
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
public PrintWaitQueueQuery(){}
/** /**
* 获取 开始 证照档案ID * 获取 开始 证照档案ID
* @return recordIdStart * @return recordIdStart
*/ */
public Long getRecordIdStart(){ public Long getRecordIdStart(){
return this.recordIdStart; return this.recordIdStart;
} }
/** /**
* 设置 开始 证照档案ID * 设置 开始 证照档案ID
* @param recordIdStart * @param recordIdStart
*/ */
public void setRecordIdStart(Long recordIdStart){ public void setRecordIdStart(Long recordIdStart){
this.recordIdStart = recordIdStart; this.recordIdStart = recordIdStart;
} }
/** /**
* 获取 结束 证照档案ID * 获取 结束 证照档案ID
* @return $recordIdEnd * @return $recordIdEnd
*/ */
public Long getRecordIdEnd(){ public Long getRecordIdEnd(){
return this.recordIdEnd; return this.recordIdEnd;
} }
/** /**
* 设置 结束 证照档案ID * 设置 结束 证照档案ID
* @param recordIdEnd * @param recordIdEnd
*/ */
public void setRecordIdEnd(Long recordIdEnd){ public void setRecordIdEnd(Long recordIdEnd){
this.recordIdEnd = recordIdEnd; this.recordIdEnd = recordIdEnd;
} }
/** /**
* 获取 增加 证照档案ID * 获取 增加 证照档案ID
* @return recordIdIncrement * @return recordIdIncrement
*/ */
public Long getRecordIdIncrement(){ public Long getRecordIdIncrement(){
return this.recordIdIncrement; return this.recordIdIncrement;
} }
/** /**
* 设置 增加 证照档案ID * 设置 增加 证照档案ID
* @param recordIdIncrement * @param recordIdIncrement
*/ */
public void setRecordIdIncrement(Long recordIdIncrement){ public void setRecordIdIncrement(Long recordIdIncrement){
this.recordIdIncrement = recordIdIncrement; this.recordIdIncrement = recordIdIncrement;
} }
/** /**
* 获取 证照档案ID * 获取 证照档案ID
* @return recordIdList * @return recordIdList
*/ */
public List<Long> getRecordIdList(){ public List<Long> getRecordIdList(){
return this.recordIdList; return this.recordIdList;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdList * @param recordIdList
*/ */
public void setRecordIdList(List<Long> recordIdList){ public void setRecordIdList(List<Long> recordIdList){
this.recordIdList = recordIdList; this.recordIdList = recordIdList;
} }
/** /**
* 获取 证照档案ID * 获取 证照档案ID
* @return recordIdNotList * @return recordIdNotList
*/ */
public List<Long> getRecordIdNotList(){ public List<Long> getRecordIdNotList(){
return this.recordIdNotList; return this.recordIdNotList;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdNotList * @param recordIdNotList
*/ */
public void setRecordIdNotList(List<Long> recordIdNotList){ public void setRecordIdNotList(List<Long> recordIdNotList){
this.recordIdNotList = recordIdNotList; this.recordIdNotList = recordIdNotList;
} }
/** /**
* 获取 开始 申请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 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 catalogCodeList * @return catalogCodeList
*/ */
public List<String> getCatalogCodeList(){ public List<String> getCatalogCodeList(){
return this.catalogCodeList; return this.catalogCodeList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeList * @param catalogCodeList
*/ */
public void setCatalogCodeList(List<String> catalogCodeList){ public void setCatalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList; this.catalogCodeList = catalogCodeList;
} }
/** /**
* 获取 证照目录编号 * 获取 证照目录编号
* @return catalogCodeNotList * @return catalogCodeNotList
*/ */
public List<String> getCatalogCodeNotList(){ public List<String> getCatalogCodeNotList(){
return this.catalogCodeNotList; return this.catalogCodeNotList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeNotList * @param catalogCodeNotList
*/ */
public void setCatalogCodeNotList(List<String> catalogCodeNotList){ public void setCatalogCodeNotList(List<String> catalogCodeNotList){
this.catalogCodeNotList = catalogCodeNotList; this.catalogCodeNotList = catalogCodeNotList;
} }
/** /**
* 获取 目录名称 * 获取 目录名称
* @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 * 获取 证照名称
* @return templateIdStart * @return certificateNameList
*/ */
public Long getTemplateIdStart(){
return this.templateIdStart;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public void setTemplateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
}
/**
* 获取 结束 证照目录模板ID
* @return $templateIdEnd
*/
public Long getTemplateIdEnd(){
return this.templateIdEnd;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public void setTemplateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
}
/**
* 获取 增加 证照目录模板ID
* @return templateIdIncrement
*/
public Long getTemplateIdIncrement(){
return this.templateIdIncrement;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public void setTemplateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
}
/**
* 获取 证照目录模板ID
* @return templateIdList
*/
public List<Long> getTemplateIdList(){
return this.templateIdList;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public void setTemplateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
}
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public void setTemplateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
}
/**
* 获取 证照模板名称
* @return templateNameList
*/
public List<String> getTemplateNameList(){
return this.templateNameList;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public void setTemplateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
}
/**
* 获取 证照模板名称
* @return templateNameNotList
*/
public List<String> getTemplateNameNotList(){
return this.templateNameNotList;
}
/**
* 设置 证照模板名称
* @param templateNameNotList
*/
public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateNameNotList = templateNameNotList;
}
/**
* 获取 证照名称
* @return certificateNameList
*/
public List<String> getCertificateNameList(){ public List<String> getCertificateNameList(){
return this.certificateNameList; return this.certificateNameList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameList * @param certificateNameList
*/ */
public void setCertificateNameList(List<String> certificateNameList){ public void setCertificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList; this.certificateNameList = certificateNameList;
} }
/** /**
* 获取 证照名称 * 获取 证照名称
* @return certificateNameNotList * @return certificateNameNotList
*/ */
public List<String> getCertificateNameNotList(){ public List<String> getCertificateNameNotList(){
return this.certificateNameNotList; return this.certificateNameNotList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameNotList * @param certificateNameNotList
*/ */
public void setCertificateNameNotList(List<String> certificateNameNotList){ public void setCertificateNameNotList(List<String> certificateNameNotList){
this.certificateNameNotList = certificateNameNotList; this.certificateNameNotList = certificateNameNotList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeList * @return certificateCodeList
*/ */
public List<String> getCertificateCodeList(){ public List<String> getCertificateCodeList(){
return this.certificateCodeList; return this.certificateCodeList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeList * @param certificateCodeList
*/ */
public void setCertificateCodeList(List<String> certificateCodeList){ public void setCertificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList; this.certificateCodeList = certificateCodeList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeNotList * @return certificateCodeNotList
*/ */
public List<String> getCertificateCodeNotList(){ public List<String> getCertificateCodeNotList(){
return this.certificateCodeNotList; return this.certificateCodeNotList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeNotList * @param certificateCodeNotList
*/ */
public void setCertificateCodeNotList(List<String> certificateCodeNotList){ public void setCertificateCodeNotList(List<String> certificateCodeNotList){
this.certificateCodeNotList = certificateCodeNotList; this.certificateCodeNotList = certificateCodeNotList;
} }
/** /**
* 获取 企业名称 * 获取 企业名称
* @return enterpriseNameList * @return enterpriseNameList
*/ */
public List<String> getEnterpriseNameList(){ public List<String> getEnterpriseNameList(){
return this.enterpriseNameList; return this.enterpriseNameList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public void setEnterpriseNameList(List<String> enterpriseNameList){ public void setEnterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
} }
/** /**
* 获取 企业名称 * 获取 企业名称
* @return enterpriseNameNotList * @return enterpriseNameNotList
*/ */
public List<String> getEnterpriseNameNotList(){ public List<String> getEnterpriseNameNotList(){
return this.enterpriseNameNotList; return this.enterpriseNameNotList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameNotList * @param enterpriseNameNotList
*/ */
public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){ public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){
this.enterpriseNameNotList = enterpriseNameNotList; this.enterpriseNameNotList = enterpriseNameNotList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameList * @return holderNameList
*/ */
public List<String> getHolderNameList(){ public List<String> getHolderNameList(){
return this.holderNameList; return this.holderNameList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public void setHolderNameList(List<String> holderNameList){ public void setHolderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameNotList * @return holderNameNotList
*/ */
public List<String> getHolderNameNotList(){ public List<String> getHolderNameNotList(){
return this.holderNameNotList; return this.holderNameNotList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameNotList * @param holderNameNotList
*/ */
public void setHolderNameNotList(List<String> holderNameNotList){ public void setHolderNameNotList(List<String> holderNameNotList){
this.holderNameNotList = holderNameNotList; this.holderNameNotList = holderNameNotList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoList * @return holderIDCardNoList
*/ */
public List<String> getHolderIDCardNoList(){ public List<String> getHolderIDCardNoList(){
return this.holderIDCardNoList; return this.holderIDCardNoList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public void setHolderIDCardNoList(List<String> holderIDCardNoList){ public void setHolderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoNotList * @return holderIDCardNoNotList
*/ */
public List<String> getHolderIDCardNoNotList(){ public List<String> getHolderIDCardNoNotList(){
return this.holderIDCardNoNotList; return this.holderIDCardNoNotList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoNotList * @param holderIDCardNoNotList
*/ */
public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){ public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){
this.holderIDCardNoNotList = holderIDCardNoNotList; this.holderIDCardNoNotList = holderIDCardNoNotList;
} }
/** /**
* 获取 取件人姓名 * 获取 取件人姓名
* @return pickerNameList * @return pickerNameList
*/ */
public List<String> getPickerNameList(){ public List<String> getPickerNameList(){
return this.pickerNameList; return this.pickerNameList;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameList * @param pickerNameList
*/ */
public void setPickerNameList(List<String> pickerNameList){ public void setPickerNameList(List<String> pickerNameList){
this.pickerNameList = pickerNameList; this.pickerNameList = pickerNameList;
} }
/** /**
* 获取 取件人姓名 * 获取 取件人姓名
* @return pickerNameNotList * @return pickerNameNotList
*/ */
public List<String> getPickerNameNotList(){ public List<String> getPickerNameNotList(){
return this.pickerNameNotList; return this.pickerNameNotList;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameNotList * @param pickerNameNotList
*/ */
public void setPickerNameNotList(List<String> pickerNameNotList){ public void setPickerNameNotList(List<String> pickerNameNotList){
this.pickerNameNotList = pickerNameNotList; this.pickerNameNotList = pickerNameNotList;
} }
/** /**
* 获取 取件人证件号码 * 获取 取件人证件号码
* @return pickerIDCardNoList * @return pickerIDCardNoList
*/ */
public List<String> getPickerIDCardNoList(){ public List<String> getPickerIDCardNoList(){
return this.pickerIDCardNoList; return this.pickerIDCardNoList;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoList * @param pickerIDCardNoList
*/ */
public void setPickerIDCardNoList(List<String> pickerIDCardNoList){ public void setPickerIDCardNoList(List<String> pickerIDCardNoList){
this.pickerIDCardNoList = pickerIDCardNoList; this.pickerIDCardNoList = pickerIDCardNoList;
} }
/** /**
* 获取 取件人证件号码 * 获取 取件人证件号码
* @return pickerIDCardNoNotList * @return pickerIDCardNoNotList
*/ */
public List<String> getPickerIDCardNoNotList(){ public List<String> getPickerIDCardNoNotList(){
return this.pickerIDCardNoNotList; return this.pickerIDCardNoNotList;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoNotList * @param pickerIDCardNoNotList
*/ */
public void setPickerIDCardNoNotList(List<String> pickerIDCardNoNotList){ public void setPickerIDCardNoNotList(List<String> pickerIDCardNoNotList){
this.pickerIDCardNoNotList = pickerIDCardNoNotList; this.pickerIDCardNoNotList = pickerIDCardNoNotList;
} }
/** /**
* 获取 证件预览地址 * 获取 证件预览地址
* @return previewUrlList * @return previewUrlList
*/ */
public List<String> getPreviewUrlList(){ public List<String> getPreviewUrlList(){
return this.previewUrlList; return this.previewUrlList;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlList * @param previewUrlList
*/ */
public void setPreviewUrlList(List<String> previewUrlList){ public void setPreviewUrlList(List<String> previewUrlList){
this.previewUrlList = previewUrlList; this.previewUrlList = previewUrlList;
} }
/** /**
* 获取 证件预览地址 * 获取 证件预览地址
* @return previewUrlNotList * @return previewUrlNotList
*/ */
public List<String> getPreviewUrlNotList(){ public List<String> getPreviewUrlNotList(){
return this.previewUrlNotList; return this.previewUrlNotList;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlNotList * @param previewUrlNotList
*/ */
public void setPreviewUrlNotList(List<String> previewUrlNotList){ public void setPreviewUrlNotList(List<String> previewUrlNotList){
this.previewUrlNotList = previewUrlNotList; this.previewUrlNotList = previewUrlNotList;
} }
/** /**
* 获取 证件附件地址 * 获取 证件附件地址
* @return certificateUrlList * @return certificateUrlList
*/ */
public List<String> getCertificateUrlList(){ public List<String> getCertificateUrlList(){
return this.certificateUrlList; return this.certificateUrlList;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlList * @param certificateUrlList
*/ */
public void setCertificateUrlList(List<String> certificateUrlList){ public void setCertificateUrlList(List<String> certificateUrlList){
this.certificateUrlList = certificateUrlList; this.certificateUrlList = certificateUrlList;
} }
/** /**
* 获取 证件附件地址 * 获取 证件附件地址
* @return certificateUrlNotList * @return certificateUrlNotList
*/ */
public List<String> getCertificateUrlNotList(){ public List<String> getCertificateUrlNotList(){
return this.certificateUrlNotList; return this.certificateUrlNotList;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlNotList * @param certificateUrlNotList
*/ */
public void setCertificateUrlNotList(List<String> certificateUrlNotList){ public void setCertificateUrlNotList(List<String> certificateUrlNotList){
this.certificateUrlNotList = certificateUrlNotList; this.certificateUrlNotList = certificateUrlNotList;
} }
/** /**
* 获取 开始 是否完成打印0否1是 * 获取 开始 是否完成打印0否1是
* @return printStatusStart * @return printStatusStart
*/ */
public Integer getPrintStatusStart(){ public Integer getPrintStatusStart(){
return this.printStatusStart; return this.printStatusStart;
} }
/** /**
* 设置 开始 是否完成打印0否1是 * 设置 开始 是否完成打印0否1是
* @param printStatusStart * @param printStatusStart
*/ */
public void setPrintStatusStart(Integer printStatusStart){ public void setPrintStatusStart(Integer printStatusStart){
this.printStatusStart = printStatusStart; this.printStatusStart = printStatusStart;
} }
/** /**
* 获取 结束 是否完成打印0否1是 * 获取 结束 是否完成打印0否1是
* @return $printStatusEnd * @return $printStatusEnd
*/ */
public Integer getPrintStatusEnd(){ public Integer getPrintStatusEnd(){
return this.printStatusEnd; return this.printStatusEnd;
} }
/** /**
* 设置 结束 是否完成打印0否1是 * 设置 结束 是否完成打印0否1是
* @param printStatusEnd * @param printStatusEnd
*/ */
public void setPrintStatusEnd(Integer printStatusEnd){ public void setPrintStatusEnd(Integer printStatusEnd){
this.printStatusEnd = printStatusEnd; this.printStatusEnd = printStatusEnd;
} }
/** /**
* 获取 增加 是否完成打印0否1是 * 获取 增加 是否完成打印0否1是
* @return printStatusIncrement * @return printStatusIncrement
*/ */
public Integer getPrintStatusIncrement(){ public Integer getPrintStatusIncrement(){
return this.printStatusIncrement; return this.printStatusIncrement;
} }
/** /**
* 设置 增加 是否完成打印0否1是 * 设置 增加 是否完成打印0否1是
* @param printStatusIncrement * @param printStatusIncrement
*/ */
public void setPrintStatusIncrement(Integer printStatusIncrement){ public void setPrintStatusIncrement(Integer printStatusIncrement){
this.printStatusIncrement = printStatusIncrement; this.printStatusIncrement = printStatusIncrement;
} }
/** /**
* 获取 是否完成打印0否1是 * 获取 是否完成打印0否1是
* @return printStatusList * @return printStatusList
*/ */
public List<Integer> getPrintStatusList(){ public List<Integer> getPrintStatusList(){
return this.printStatusList; return this.printStatusList;
} }
/** /**
* 设置 是否完成打印0否1是 * 设置 是否完成打印0否1是
* @param printStatusList * @param printStatusList
*/ */
public void setPrintStatusList(List<Integer> printStatusList){ public void setPrintStatusList(List<Integer> printStatusList){
this.printStatusList = printStatusList; this.printStatusList = printStatusList;
} }
/** /**
* 获取 是否完成打印0否1是 * 获取 是否完成打印0否1是
* @return printStatusNotList * @return printStatusNotList
*/ */
public List<Integer> getPrintStatusNotList(){ public List<Integer> getPrintStatusNotList(){
return this.printStatusNotList; return this.printStatusNotList;
} }
/** /**
* 设置 是否完成打印0否1是 * 设置 是否完成打印0否1是
* @param printStatusNotList * @param printStatusNotList
*/ */
public void setPrintStatusNotList(List<Integer> printStatusNotList){ public void setPrintStatusNotList(List<Integer> printStatusNotList){
this.printStatusNotList = printStatusNotList; this.printStatusNotList = printStatusNotList;
} }
/** /**
* 获取 开始 允许打印次数 * 获取 开始 允许打印次数
* @return totalStart * @return totalStart
*/ */
public Integer getTotalStart(){ public Integer getTotalStart(){
return this.totalStart; return this.totalStart;
} }
/** /**
* 设置 开始 允许打印次数 * 设置 开始 允许打印次数
* @param totalStart * @param totalStart
*/ */
public void setTotalStart(Integer totalStart){ public void setTotalStart(Integer totalStart){
this.totalStart = totalStart; this.totalStart = totalStart;
} }
/** /**
* 获取 结束 允许打印次数 * 获取 结束 允许打印次数
* @return $totalEnd * @return $totalEnd
*/ */
public Integer getTotalEnd(){ public Integer getTotalEnd(){
return this.totalEnd; return this.totalEnd;
} }
/** /**
* 设置 结束 允许打印次数 * 设置 结束 允许打印次数
* @param totalEnd * @param totalEnd
*/ */
public void setTotalEnd(Integer totalEnd){ public void setTotalEnd(Integer totalEnd){
this.totalEnd = totalEnd; this.totalEnd = totalEnd;
} }
/** /**
* 获取 增加 允许打印次数 * 获取 增加 允许打印次数
* @return totalIncrement * @return totalIncrement
*/ */
public Integer getTotalIncrement(){ public Integer getTotalIncrement(){
return this.totalIncrement; return this.totalIncrement;
} }
/** /**
* 设置 增加 允许打印次数 * 设置 增加 允许打印次数
* @param totalIncrement * @param totalIncrement
*/ */
public void setTotalIncrement(Integer totalIncrement){ public void setTotalIncrement(Integer totalIncrement){
this.totalIncrement = totalIncrement; this.totalIncrement = totalIncrement;
} }
/** /**
* 获取 允许打印次数 * 获取 允许打印次数
* @return totalList * @return totalList
*/ */
public List<Integer> getTotalList(){ public List<Integer> getTotalList(){
return this.totalList; return this.totalList;
} }
/** /**
* 设置 允许打印次数 * 设置 允许打印次数
* @param totalList * @param totalList
*/ */
public void setTotalList(List<Integer> totalList){ public void setTotalList(List<Integer> totalList){
this.totalList = totalList; this.totalList = totalList;
} }
/** /**
* 获取 允许打印次数 * 获取 允许打印次数
* @return totalNotList * @return totalNotList
*/ */
public List<Integer> getTotalNotList(){ public List<Integer> getTotalNotList(){
return this.totalNotList; return this.totalNotList;
} }
/** /**
* 设置 允许打印次数 * 设置 允许打印次数
* @param totalNotList * @param totalNotList
*/ */
public void setTotalNotList(List<Integer> totalNotList){ public void setTotalNotList(List<Integer> totalNotList){
this.totalNotList = totalNotList; this.totalNotList = totalNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
*/ */
public Long getCreateUserIdStart(){ public Long getCreateUserIdStart(){
return this.createUserIdStart; return this.createUserIdStart;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public void setCreateUserIdStart(Long createUserIdStart){ public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
} }
/** /**
* 获取 结束 创建用户 * 获取 结束 创建用户
* @return $createUserIdEnd * @return $createUserIdEnd
*/ */
public Long getCreateUserIdEnd(){ public Long getCreateUserIdEnd(){
return this.createUserIdEnd; return this.createUserIdEnd;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public void setCreateUserIdEnd(Long createUserIdEnd){ public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
} }
/** /**
* 获取 增加 创建用户 * 获取 增加 创建用户
* @return createUserIdIncrement * @return createUserIdIncrement
*/ */
public Long getCreateUserIdIncrement(){ public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement; return this.createUserIdIncrement;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public void setCreateUserIdIncrement(Long createUserIdIncrement){ public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdList * @return createUserIdList
*/ */
public List<Long> getCreateUserIdList(){ public List<Long> getCreateUserIdList(){
return this.createUserIdList; return this.createUserIdList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public void setCreateUserIdList(List<Long> createUserIdList){ public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdNotList * @return createUserIdNotList
*/ */
public List<Long> getCreateUserIdNotList(){ public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList; return this.createUserIdNotList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public void setCreateUserIdNotList(List<Long> createUserIdNotList){ public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
} }
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
*/ */
public String getCreateTimeStart(){ public String getCreateTimeStart(){
return this.createTimeStart; return this.createTimeStart;
} }
/** /**
* 设置 开始 创建时间 * 设置 开始 创建时间
* @param createTimeStart * @param createTimeStart
*/ */
public void setCreateTimeStart(String createTimeStart){ public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart; this.createTimeStart = createTimeStart;
} }
/** /**
* 获取 结束 创建时间 * 获取 结束 创建时间
* @return createTimeEnd * @return createTimeEnd
*/ */
public String getCreateTimeEnd(){ public String getCreateTimeEnd(){
return this.createTimeEnd; return this.createTimeEnd;
} }
/** /**
* 设置 结束 创建时间 * 设置 结束 创建时间
* @param createTimeEnd * @param createTimeEnd
*/ */
public void setCreateTimeEnd(String createTimeEnd){ public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd; this.createTimeEnd = createTimeEnd;
} }
/** /**
* 获取 开始 更新用户 * 获取 开始 更新用户
* @return updateUserIdStart * @return updateUserIdStart
*/ */
public Long getUpdateUserIdStart(){ public Long getUpdateUserIdStart(){
return this.updateUserIdStart; return this.updateUserIdStart;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public void setUpdateUserIdStart(Long updateUserIdStart){ public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
} }
/** /**
* 获取 结束 更新用户 * 获取 结束 更新用户
* @return $updateUserIdEnd * @return $updateUserIdEnd
*/ */
public Long getUpdateUserIdEnd(){ public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd; return this.updateUserIdEnd;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public void setUpdateUserIdEnd(Long updateUserIdEnd){ public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
} }
/** /**
* 获取 增加 更新用户 * 获取 增加 更新用户
* @return updateUserIdIncrement * @return updateUserIdIncrement
*/ */
public Long getUpdateUserIdIncrement(){ public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement; return this.updateUserIdIncrement;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){ public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdList * @return updateUserIdList
*/ */
public List<Long> getUpdateUserIdList(){ public List<Long> getUpdateUserIdList(){
return this.updateUserIdList; return this.updateUserIdList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public void setUpdateUserIdList(List<Long> updateUserIdList){ public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdNotList * @return updateUserIdNotList
*/ */
public List<Long> getUpdateUserIdNotList(){ public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList; return this.updateUserIdNotList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){ public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
} }
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
*/ */
public String getUpdateTimeStart(){ public String getUpdateTimeStart(){
return this.updateTimeStart; return this.updateTimeStart;
} }
/** /**
* 设置 开始 更新时间 * 设置 开始 更新时间
* @param updateTimeStart * @param updateTimeStart
*/ */
public void setUpdateTimeStart(String updateTimeStart){ public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart; this.updateTimeStart = updateTimeStart;
} }
/** /**
* 获取 结束 更新时间 * 获取 结束 更新时间
* @return updateTimeEnd * @return updateTimeEnd
*/ */
public String getUpdateTimeEnd(){ public String getUpdateTimeEnd(){
return this.updateTimeEnd; return this.updateTimeEnd;
} }
/** /**
* 设置 结束 更新时间 * 设置 结束 更新时间
* @param updateTimeEnd * @param updateTimeEnd
*/ */
public void setUpdateTimeEnd(String updateTimeEnd){ public void setUpdateTimeEnd(String updateTimeEnd){
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/** /**
* 设置 序号,主键,自增长 * 获取 开始 站点id
* @param id * @return siteIdStart
*/ */
public PrintWaitQueueQuery id(Long id){ public Long getSiteIdStart(){
setId(id); return this.siteIdStart;
return this;
}
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public PrintWaitQueueQuery idStart(Long idStart){
this.idStart = idStart;
return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 开始 站点id
* @param idEnd * @param siteIdStart
*/ */
public PrintWaitQueueQuery idEnd(Long idEnd){ public void setSiteIdStart(Long siteIdStart){
this.idEnd = idEnd; this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 获取 结束 站点id
* @param idIncrement * @return $siteIdEnd
*/ */
public PrintWaitQueueQuery idIncrement(Long idIncrement){ public Long getSiteIdEnd(){
this.idIncrement = idIncrement; return this.siteIdEnd;
return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 结束 站点id
* @param idList * @param siteIdEnd
*/ */
public PrintWaitQueueQuery idList(List<Long> idList){ public void setSiteIdEnd(Long siteIdEnd){
this.idList = idList; this.siteIdEnd = siteIdEnd;
return this; }
}
/**
* 设置 序号,主键,自增长
* @param idNotList
*/
public PrintWaitQueueQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
}
/** /**
* 设置 站点id * 获取 增加 站点id
* @param siteId * @return siteIdIncrement
*/ */
public PrintWaitQueueQuery siteId(Long siteId){ public Long getSiteIdIncrement(){
setSiteId(siteId); return this.siteIdIncrement;
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public PrintWaitQueueQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 结束 站点id * 设置 增加 站点id
* @param siteIdEnd * @param siteIdIncrement
*/ */
public PrintWaitQueueQuery siteIdEnd(Long siteIdEnd){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdEnd = siteIdEnd; this.siteIdIncrement = siteIdIncrement;
return this;
} }
/** /**
* 设置 增加 站点id * 获取 站点id
* @param siteIdIncrement * @return siteIdList
*/ */
public PrintWaitQueueQuery siteIdIncrement(Long siteIdIncrement){ public List<Long> getSiteIdList(){
this.siteIdIncrement = siteIdIncrement; return this.siteIdList;
return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdList * @param siteIdList
*/ */
public PrintWaitQueueQuery siteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; }
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public PrintWaitQueueQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/** /**
* 设置 证照档案ID * 获取 站点id
* @param recordId * @return siteIdNotList
*/ */
public PrintWaitQueueQuery recordId(Long recordId){ public List<Long> getSiteIdNotList(){
setRecordId(recordId); return this.siteIdNotList;
return this;
}
/**
* 设置 开始 证照档案ID
* @param recordIdStart
*/
public PrintWaitQueueQuery recordIdStart(Long recordIdStart){
this.recordIdStart = recordIdStart;
return this;
} }
/** /**
* 设置 结束 证照档案ID * 设置 站点id
* @param recordIdEnd * @param siteIdNotList
*/ */
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
/**
* 获取 开始 序号,主键,自增长
* @return IdStart
*/
public Long getIdStart(){
return this.IdStart;
}
/**
* 设置 开始 序号,主键,自增长
* @param IdStart
*/
public void setIdStart(Long IdStart){
this.IdStart = IdStart;
}
/**
* 获取 结束 序号,主键,自增长
* @return $IdEnd
*/
public Long getIdEnd(){
return this.IdEnd;
}
/**
* 设置 结束 序号,主键,自增长
* @param IdEnd
*/
public void setIdEnd(Long IdEnd){
this.IdEnd = IdEnd;
}
/**
* 获取 增加 序号,主键,自增长
* @return IdIncrement
*/
public Long getIdIncrement(){
return this.IdIncrement;
}
/**
* 设置 增加 序号,主键,自增长
* @param IdIncrement
*/
public void setIdIncrement(Long IdIncrement){
this.IdIncrement = IdIncrement;
}
/**
* 获取 序号,主键,自增长
* @return IdList
*/
public List<Long> getIdList(){
return this.IdList;
}
/**
* 设置 序号,主键,自增长
* @param IdList
*/
public void setIdList(List<Long> IdList){
this.IdList = IdList;
}
/**
* 获取 序号,主键,自增长
* @return IdNotList
*/
public List<Long> getIdNotList(){
return this.IdNotList;
}
/**
* 设置 序号,主键,自增长
* @param IdNotList
*/
public void setIdNotList(List<Long> IdNotList){
this.IdNotList = IdNotList;
}
/**
* 获取 开始 证照目录模板ID
* @return templateIdStart
*/
public Long getTemplateIdStart(){
return this.templateIdStart;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public void setTemplateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
}
/**
* 获取 结束 证照目录模板ID
* @return $templateIdEnd
*/
public Long getTemplateIdEnd(){
return this.templateIdEnd;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public void setTemplateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
}
/**
* 获取 增加 证照目录模板ID
* @return templateIdIncrement
*/
public Long getTemplateIdIncrement(){
return this.templateIdIncrement;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public void setTemplateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
}
/**
* 获取 证照目录模板ID
* @return templateIdList
*/
public List<Long> getTemplateIdList(){
return this.templateIdList;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public void setTemplateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
}
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public void setTemplateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
}
/**
* 获取 证照模板名称
* @return templateNameList
*/
public List<String> getTemplateNameList(){
return this.templateNameList;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public void setTemplateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
}
/**
* 获取 证照模板名称
* @return templateNameNotList
*/
public List<String> getTemplateNameNotList(){
return this.templateNameNotList;
}
/**
* 设置 证照模板名称
* @param templateNameNotList
*/
public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateNameNotList = templateNameNotList;
}
/**
* 获取 手机号码
* @return mobileList
*/
public List<String> getMobileList(){
return this.mobileList;
}
/**
* 设置 手机号码
* @param mobileList
*/
public void setMobileList(List<String> mobileList){
this.mobileList = mobileList;
}
/**
* 获取 手机号码
* @return mobileNotList
*/
public List<String> getMobileNotList(){
return this.mobileNotList;
}
/**
* 设置 手机号码
* @param mobileNotList
*/
public void setMobileNotList(List<String> mobileNotList){
this.mobileNotList = mobileNotList;
}
/**
* 设置 证照档案ID
* @param recordId
*/
public PrintWaitQueueQuery recordId(Long recordId){
setRecordId(recordId);
return this;
}
/**
* 设置 开始 证照档案ID
* @param recordIdStart
*/
public PrintWaitQueueQuery recordIdStart(Long recordIdStart){
this.recordIdStart = recordIdStart;
return this;
}
/**
* 设置 结束 证照档案ID
* @param recordIdEnd
*/
public PrintWaitQueueQuery recordIdEnd(Long recordIdEnd){ public PrintWaitQueueQuery recordIdEnd(Long recordIdEnd){
this.recordIdEnd = recordIdEnd; this.recordIdEnd = recordIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 证照档案ID * 设置 增加 证照档案ID
* @param recordIdIncrement * @param recordIdIncrement
*/ */
public PrintWaitQueueQuery recordIdIncrement(Long recordIdIncrement){ public PrintWaitQueueQuery recordIdIncrement(Long recordIdIncrement){
this.recordIdIncrement = recordIdIncrement; this.recordIdIncrement = recordIdIncrement;
return this; return this;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdList * @param recordIdList
*/ */
public PrintWaitQueueQuery recordIdList(List<Long> recordIdList){ public PrintWaitQueueQuery recordIdList(List<Long> recordIdList){
this.recordIdList = recordIdList; this.recordIdList = recordIdList;
return this; return this;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdNotList * @param recordIdNotList
*/ */
public PrintWaitQueueQuery recordIdNotList(List<Long> recordIdNotList){ public PrintWaitQueueQuery recordIdNotList(List<Long> recordIdNotList){
this.recordIdNotList = recordIdNotList; this.recordIdNotList = recordIdNotList;
return this; return this;
} }
/** /**
* 设置 申请ID * 设置 申请ID
* @param applyId * @param applyId
*/ */
public PrintWaitQueueQuery applyId(Long applyId){ public PrintWaitQueueQuery applyId(Long applyId){
setApplyId(applyId); setApplyId(applyId);
return this; return this;
} }
/** /**
* 设置 开始 申请ID * 设置 开始 申请ID
* @param applyIdStart * @param applyIdStart
*/ */
public PrintWaitQueueQuery applyIdStart(Long applyIdStart){ public PrintWaitQueueQuery applyIdStart(Long applyIdStart){
this.applyIdStart = applyIdStart; this.applyIdStart = applyIdStart;
return this; return this;
} }
/** /**
* 设置 结束 申请ID * 设置 结束 申请ID
* @param applyIdEnd * @param applyIdEnd
*/ */
public PrintWaitQueueQuery applyIdEnd(Long applyIdEnd){ public PrintWaitQueueQuery applyIdEnd(Long applyIdEnd){
this.applyIdEnd = applyIdEnd; this.applyIdEnd = applyIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 申请ID * 设置 增加 申请ID
* @param applyIdIncrement * @param applyIdIncrement
*/ */
public PrintWaitQueueQuery applyIdIncrement(Long applyIdIncrement){ public PrintWaitQueueQuery applyIdIncrement(Long applyIdIncrement){
this.applyIdIncrement = applyIdIncrement; this.applyIdIncrement = applyIdIncrement;
return this; return this;
} }
/** /**
* 设置 申请ID * 设置 申请ID
* @param applyIdList * @param applyIdList
*/ */
public PrintWaitQueueQuery applyIdList(List<Long> applyIdList){ public PrintWaitQueueQuery applyIdList(List<Long> applyIdList){
this.applyIdList = applyIdList; this.applyIdList = applyIdList;
return this; return this;
} }
/** /**
* 设置 申请ID * 设置 申请ID
* @param applyIdNotList * @param applyIdNotList
*/ */
public PrintWaitQueueQuery applyIdNotList(List<Long> applyIdNotList){ public PrintWaitQueueQuery applyIdNotList(List<Long> applyIdNotList){
this.applyIdNotList = applyIdNotList; this.applyIdNotList = applyIdNotList;
return this; return this;
} }
/** /**
* 设置 证照目录ID * 设置 证照目录ID
* @param catalogId * @param catalogId
*/ */
public PrintWaitQueueQuery catalogId(Long catalogId){ public PrintWaitQueueQuery catalogId(Long catalogId){
setCatalogId(catalogId); setCatalogId(catalogId);
return this; return this;
} }
/** /**
* 设置 开始 证照目录ID * 设置 开始 证照目录ID
* @param catalogIdStart * @param catalogIdStart
*/ */
public PrintWaitQueueQuery catalogIdStart(Long catalogIdStart){ public PrintWaitQueueQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart; this.catalogIdStart = catalogIdStart;
return this; return this;
} }
/** /**
* 设置 结束 证照目录ID * 设置 结束 证照目录ID
* @param catalogIdEnd * @param catalogIdEnd
*/ */
public PrintWaitQueueQuery catalogIdEnd(Long catalogIdEnd){ public PrintWaitQueueQuery catalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd; this.catalogIdEnd = catalogIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 证照目录ID * 设置 增加 证照目录ID
* @param catalogIdIncrement * @param catalogIdIncrement
*/ */
public PrintWaitQueueQuery catalogIdIncrement(Long catalogIdIncrement){ public PrintWaitQueueQuery catalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement; this.catalogIdIncrement = catalogIdIncrement;
return this; return this;
} }
/** /**
* 设置 证照目录ID * 设置 证照目录ID
* @param catalogIdList * @param catalogIdList
*/ */
public PrintWaitQueueQuery catalogIdList(List<Long> catalogIdList){ public PrintWaitQueueQuery catalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList; this.catalogIdList = catalogIdList;
return this; return this;
} }
/** /**
* 设置 证照目录ID * 设置 证照目录ID
* @param catalogIdNotList * @param catalogIdNotList
*/ */
public PrintWaitQueueQuery catalogIdNotList(List<Long> catalogIdNotList){ public PrintWaitQueueQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList; this.catalogIdNotList = catalogIdNotList;
return this; return this;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCode * @param catalogCode
*/ */
public PrintWaitQueueQuery catalogCode(String catalogCode){ public PrintWaitQueueQuery catalogCode(String catalogCode){
setCatalogCode(catalogCode); setCatalogCode(catalogCode);
return this; return this;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeList * @param catalogCodeList
*/ */
public PrintWaitQueueQuery catalogCodeList(List<String> catalogCodeList){ public PrintWaitQueueQuery catalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList; this.catalogCodeList = catalogCodeList;
return this; return this;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogName * @param catalogName
*/ */
public PrintWaitQueueQuery catalogName(String catalogName){ public PrintWaitQueueQuery catalogName(String catalogName){
setCatalogName(catalogName); setCatalogName(catalogName);
return this; return this;
} }
/** /**
* 设置 目录名称 * 设置 目录名称
* @param catalogNameList * @param catalogNameList
*/ */
public PrintWaitQueueQuery catalogNameList(List<String> catalogNameList){ public PrintWaitQueueQuery catalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList; this.catalogNameList = catalogNameList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateId
*/
public PrintWaitQueueQuery templateId(Long templateId){
setTemplateId(templateId);
return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public PrintWaitQueueQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public PrintWaitQueueQuery templateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
return this;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public PrintWaitQueueQuery templateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public PrintWaitQueueQuery templateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public PrintWaitQueueQuery templateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
return this; return this;
}
/**
* 设置 证照模板名称
* @param templateName
*/
public PrintWaitQueueQuery templateName(String templateName){
setTemplateName(templateName);
return this;
} }
/**
* 设置 证照模板名称
* @param templateNameList
*/
public PrintWaitQueueQuery templateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
return this;
}
/**
/** * 设置 证照名称
* 设置 证照名称 * @param certificateName
* @param certificateName */
*/
public PrintWaitQueueQuery certificateName(String certificateName){ public PrintWaitQueueQuery certificateName(String certificateName){
setCertificateName(certificateName); setCertificateName(certificateName);
return this; return this;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameList * @param certificateNameList
*/ */
public PrintWaitQueueQuery certificateNameList(List<String> certificateNameList){ public PrintWaitQueueQuery certificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList; this.certificateNameList = certificateNameList;
return this; return this;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCode * @param certificateCode
*/ */
public PrintWaitQueueQuery certificateCode(String certificateCode){ public PrintWaitQueueQuery certificateCode(String certificateCode){
setCertificateCode(certificateCode); setCertificateCode(certificateCode);
return this; return this;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeList * @param certificateCodeList
*/ */
public PrintWaitQueueQuery certificateCodeList(List<String> certificateCodeList){ public PrintWaitQueueQuery certificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList; this.certificateCodeList = certificateCodeList;
return this; return this;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseName * @param enterpriseName
*/ */
public PrintWaitQueueQuery enterpriseName(String enterpriseName){ public PrintWaitQueueQuery enterpriseName(String enterpriseName){
setEnterpriseName(enterpriseName); setEnterpriseName(enterpriseName);
return this; return this;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public PrintWaitQueueQuery enterpriseNameList(List<String> enterpriseNameList){ public PrintWaitQueueQuery enterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderName * @param holderName
*/ */
public PrintWaitQueueQuery holderName(String holderName){ public PrintWaitQueueQuery holderName(String holderName){
setHolderName(holderName); setHolderName(holderName);
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public PrintWaitQueueQuery holderNameList(List<String> holderNameList){ public PrintWaitQueueQuery holderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNo * @param holderIDCardNo
*/ */
public PrintWaitQueueQuery holderIDCardNo(String holderIDCardNo){ public PrintWaitQueueQuery holderIDCardNo(String holderIDCardNo){
setHolderIDCardNo(holderIDCardNo); setHolderIDCardNo(holderIDCardNo);
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public PrintWaitQueueQuery holderIDCardNoList(List<String> holderIDCardNoList){ public PrintWaitQueueQuery holderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
return this; return this;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerName * @param pickerName
*/ */
public PrintWaitQueueQuery pickerName(String pickerName){ public PrintWaitQueueQuery pickerName(String pickerName){
setPickerName(pickerName); setPickerName(pickerName);
return this; return this;
} }
/** /**
* 设置 取件人姓名 * 设置 取件人姓名
* @param pickerNameList * @param pickerNameList
*/ */
public PrintWaitQueueQuery pickerNameList(List<String> pickerNameList){ public PrintWaitQueueQuery pickerNameList(List<String> pickerNameList){
this.pickerNameList = pickerNameList; this.pickerNameList = pickerNameList;
return this; return this;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNo * @param pickerIDCardNo
*/ */
public PrintWaitQueueQuery pickerIDCardNo(String pickerIDCardNo){ public PrintWaitQueueQuery pickerIDCardNo(String pickerIDCardNo){
setPickerIDCardNo(pickerIDCardNo); setPickerIDCardNo(pickerIDCardNo);
return this; return this;
} }
/** /**
* 设置 取件人证件号码 * 设置 取件人证件号码
* @param pickerIDCardNoList * @param pickerIDCardNoList
*/ */
public PrintWaitQueueQuery pickerIDCardNoList(List<String> pickerIDCardNoList){ public PrintWaitQueueQuery pickerIDCardNoList(List<String> pickerIDCardNoList){
this.pickerIDCardNoList = pickerIDCardNoList; this.pickerIDCardNoList = pickerIDCardNoList;
return this; return this;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrl * @param previewUrl
*/ */
public PrintWaitQueueQuery previewUrl(String previewUrl){ public PrintWaitQueueQuery previewUrl(String previewUrl){
setPreviewUrl(previewUrl); setPreviewUrl(previewUrl);
return this; return this;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlList * @param previewUrlList
*/ */
public PrintWaitQueueQuery previewUrlList(List<String> previewUrlList){ public PrintWaitQueueQuery previewUrlList(List<String> previewUrlList){
this.previewUrlList = previewUrlList; this.previewUrlList = previewUrlList;
return this; return this;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrl * @param certificateUrl
*/ */
public PrintWaitQueueQuery certificateUrl(String certificateUrl){ public PrintWaitQueueQuery certificateUrl(String certificateUrl){
setCertificateUrl(certificateUrl); setCertificateUrl(certificateUrl);
return this; return this;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlList * @param certificateUrlList
*/ */
public PrintWaitQueueQuery certificateUrlList(List<String> certificateUrlList){ public PrintWaitQueueQuery certificateUrlList(List<String> certificateUrlList){
this.certificateUrlList = certificateUrlList; this.certificateUrlList = certificateUrlList;
return this; return this;
} }
/** /**
* 设置 是否完成打印0否1是 * 设置 是否完成打印0否1是
* @param printStatus * @param printStatus
*/ */
public PrintWaitQueueQuery printStatus(Integer printStatus){ public PrintWaitQueueQuery printStatus(Integer printStatus){
setPrintStatus(printStatus); setPrintStatus(printStatus);
return this; return this;
} }
/** /**
* 设置 开始 是否完成打印0否1是 * 设置 开始 是否完成打印0否1是
* @param printStatusStart * @param printStatusStart
*/ */
public PrintWaitQueueQuery printStatusStart(Integer printStatusStart){ public PrintWaitQueueQuery printStatusStart(Integer printStatusStart){
this.printStatusStart = printStatusStart; this.printStatusStart = printStatusStart;
return this; return this;
} }
/** /**
* 设置 结束 是否完成打印0否1是 * 设置 结束 是否完成打印0否1是
* @param printStatusEnd * @param printStatusEnd
*/ */
public PrintWaitQueueQuery printStatusEnd(Integer printStatusEnd){ public PrintWaitQueueQuery printStatusEnd(Integer printStatusEnd){
this.printStatusEnd = printStatusEnd; this.printStatusEnd = printStatusEnd;
return this; return this;
} }
/** /**
* 设置 增加 是否完成打印0否1是 * 设置 增加 是否完成打印0否1是
* @param printStatusIncrement * @param printStatusIncrement
*/ */
public PrintWaitQueueQuery printStatusIncrement(Integer printStatusIncrement){ public PrintWaitQueueQuery printStatusIncrement(Integer printStatusIncrement){
this.printStatusIncrement = printStatusIncrement; this.printStatusIncrement = printStatusIncrement;
return this; return this;
} }
/** /**
* 设置 是否完成打印0否1是 * 设置 是否完成打印0否1是
* @param printStatusList * @param printStatusList
*/ */
public PrintWaitQueueQuery printStatusList(List<Integer> printStatusList){ public PrintWaitQueueQuery printStatusList(List<Integer> printStatusList){
this.printStatusList = printStatusList; this.printStatusList = printStatusList;
return this; return this;
} }
/** /**
* 设置 是否完成打印0否1是 * 设置 是否完成打印0否1是
* @param printStatusNotList * @param printStatusNotList
*/ */
public PrintWaitQueueQuery printStatusNotList(List<Integer> printStatusNotList){ public PrintWaitQueueQuery printStatusNotList(List<Integer> printStatusNotList){
this.printStatusNotList = printStatusNotList; this.printStatusNotList = printStatusNotList;
return this; return this;
} }
/** /**
* 设置 允许打印次数 * 设置 允许打印次数
* @param total * @param total
*/ */
public PrintWaitQueueQuery total(Integer total){ public PrintWaitQueueQuery total(Integer total){
setTotal(total); setTotal(total);
return this; return this;
} }
/** /**
* 设置 开始 允许打印次数 * 设置 开始 允许打印次数
* @param totalStart * @param totalStart
*/ */
public PrintWaitQueueQuery totalStart(Integer totalStart){ public PrintWaitQueueQuery totalStart(Integer totalStart){
this.totalStart = totalStart; this.totalStart = totalStart;
return this; return this;
} }
/** /**
* 设置 结束 允许打印次数 * 设置 结束 允许打印次数
* @param totalEnd * @param totalEnd
*/ */
public PrintWaitQueueQuery totalEnd(Integer totalEnd){ public PrintWaitQueueQuery totalEnd(Integer totalEnd){
this.totalEnd = totalEnd; this.totalEnd = totalEnd;
return this; return this;
} }
/** /**
* 设置 增加 允许打印次数 * 设置 增加 允许打印次数
* @param totalIncrement * @param totalIncrement
*/ */
public PrintWaitQueueQuery totalIncrement(Integer totalIncrement){ public PrintWaitQueueQuery totalIncrement(Integer totalIncrement){
this.totalIncrement = totalIncrement; this.totalIncrement = totalIncrement;
return this; return this;
} }
/** /**
* 设置 允许打印次数 * 设置 允许打印次数
* @param totalList * @param totalList
*/ */
public PrintWaitQueueQuery totalList(List<Integer> totalList){ public PrintWaitQueueQuery totalList(List<Integer> totalList){
this.totalList = totalList; this.totalList = totalList;
return this; return this;
} }
/** /**
* 设置 允许打印次数 * 设置 允许打印次数
* @param totalNotList * @param totalNotList
*/ */
public PrintWaitQueueQuery totalNotList(List<Integer> totalNotList){ public PrintWaitQueueQuery totalNotList(List<Integer> totalNotList){
this.totalNotList = totalNotList; this.totalNotList = totalNotList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public PrintWaitQueueQuery createUserId(Long createUserId){ public PrintWaitQueueQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public PrintWaitQueueQuery createUserIdStart(Long createUserIdStart){ public PrintWaitQueueQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public PrintWaitQueueQuery createUserIdEnd(Long createUserIdEnd){ public PrintWaitQueueQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public PrintWaitQueueQuery createUserIdIncrement(Long createUserIdIncrement){ public PrintWaitQueueQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public PrintWaitQueueQuery createUserIdList(List<Long> createUserIdList){ public PrintWaitQueueQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public PrintWaitQueueQuery createUserIdNotList(List<Long> createUserIdNotList){ public PrintWaitQueueQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public PrintWaitQueueQuery updateUserId(Long updateUserId){ public PrintWaitQueueQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public PrintWaitQueueQuery updateUserIdStart(Long updateUserIdStart){ public PrintWaitQueueQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public PrintWaitQueueQuery updateUserIdEnd(Long updateUserIdEnd){ public PrintWaitQueueQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public PrintWaitQueueQuery updateUserIdIncrement(Long updateUserIdIncrement){ public PrintWaitQueueQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public PrintWaitQueueQuery updateUserIdList(List<Long> updateUserIdList){ public PrintWaitQueueQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public PrintWaitQueueQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public PrintWaitQueueQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 站点id
* @param siteId
*/
public PrintWaitQueueQuery siteId(Long siteId){
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public PrintWaitQueueQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
}
/**
* 设置 结束 站点id
* @param siteIdEnd
*/
public PrintWaitQueueQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
return this;
}
/**
* 设置 增加 站点id
* @param siteIdIncrement
*/
public PrintWaitQueueQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
return this;
}
/**
* 设置 站点id
* @param siteIdList
*/
public PrintWaitQueueQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
return this;
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public PrintWaitQueueQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/**
* 设置 序号,主键,自增长
* @param Id
*/
public PrintWaitQueueQuery Id(Long Id){
setId(Id);
return this;
}
/**
* 设置 开始 序号,主键,自增长
* @param IdStart
*/
public PrintWaitQueueQuery IdStart(Long IdStart){
this.IdStart = IdStart;
return this;
}
/**
* 设置 结束 序号,主键,自增长
* @param IdEnd
*/
public PrintWaitQueueQuery IdEnd(Long IdEnd){
this.IdEnd = IdEnd;
return this;
}
/**
* 设置 增加 序号,主键,自增长
* @param IdIncrement
*/
public PrintWaitQueueQuery IdIncrement(Long IdIncrement){
this.IdIncrement = IdIncrement;
return this;
}
/**
* 设置 序号,主键,自增长
* @param IdList
*/
public PrintWaitQueueQuery IdList(List<Long> IdList){
this.IdList = IdList;
return this;
}
/**
* 设置 序号,主键,自增长
* @param IdNotList
*/
public PrintWaitQueueQuery IdNotList(List<Long> IdNotList){
this.IdNotList = IdNotList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateId
*/
public PrintWaitQueueQuery templateId(Long templateId){
setTemplateId(templateId);
return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public PrintWaitQueueQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public PrintWaitQueueQuery templateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
return this;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public PrintWaitQueueQuery templateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public PrintWaitQueueQuery templateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public PrintWaitQueueQuery templateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
return this;
}
/**
* 设置 证照模板名称
* @param templateName
*/
public PrintWaitQueueQuery templateName(String templateName){
setTemplateName(templateName);
return this;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public PrintWaitQueueQuery templateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
return this;
}
/**
* 设置 手机号码
* @param mobile
*/
public PrintWaitQueueQuery mobile(String mobile){
setMobile(mobile);
return this;
}
/**
* 设置 手机号码
* @param mobileList
*/
public PrintWaitQueueQuery mobileList(List<String> mobileList){
this.mobileList = mobileList;
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<PrintWaitQueueQuery> getOrConditionList(){ public List<PrintWaitQueueQuery> 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<PrintWaitQueueQuery> orConditionList){ public void setOrConditionList(List<PrintWaitQueueQuery> 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<PrintWaitQueueQuery> getAndConditionList(){ public List<PrintWaitQueueQuery> 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<PrintWaitQueueQuery> andConditionList){ public void setAndConditionList(List<PrintWaitQueueQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -7,78 +7,82 @@ import com.mortals.framework.model.BaseEntityLong; ...@@ -7,78 +7,82 @@ import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.record.model.vo.RetainLogVo; import com.mortals.xhx.module.record.model.vo.RetainLogVo;
import lombok.Data; import lombok.Data;
/** /**
* 证照持有实体对象 * 证照持有实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
@Data @Data
public class RetainLogEntity extends RetainLogVo { public class RetainLogEntity extends RetainLogVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点id * 证照档案ID
*/ */
private Long siteId;
/**
* 证照档案ID
*/
private Long recordId; private Long recordId;
/** /**
* 证照目录ID * 证照目录ID
*/ */
private Long catalogId; private Long catalogId;
/** /**
* 证照目录编号 * 证照目录编号
*/ */
private String catalogCode; private String catalogCode;
/** /**
* 目录名称 * 目录名称
*/ */
private String catalogName; private String catalogName;
/** /**
* 证照目录模板ID * 证照名称
*/ */
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 证照名称
*/
private String certificateName; private String certificateName;
/** /**
* 证照编号 * 证照编号
*/ */
private String certificateCode; private String certificateCode;
/** /**
* 企业名称 * 企业名称
*/ */
private String enterpriseName; private String enterpriseName;
/** /**
* 持有者姓名 * 持有者姓名
*/ */
private String holderName; private String holderName;
/** /**
* 持有者证件号码 * 持有者证件号码
*/ */
private String holderIDCardNo; private String holderIDCardNo;
/** /**
* 证照状态,1正常2注销 * 证照状态,1正常2注销
*/ */
private Integer certificateStatus; private Integer certificateStatus;
/** /**
* 证件附件地址 * 证件附件地址
*/ */
private String certificateUrl; private String certificateUrl;
/** /**
* 证件预览地址 * 证件预览地址
*/ */
private String previewUrl; private String previewUrl;
/**
* 站点id
*/
private Long siteId;
/**
* 证照目录模板ID
*/
private Long templateId;
/**
* 证照模板名称
*/
private String templateName;
/**
* 手机号码
*/
private String mobile;
@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) {
...@@ -86,7 +90,7 @@ public class RetainLogEntity extends RetainLogVo { ...@@ -86,7 +90,7 @@ public class RetainLogEntity extends RetainLogVo {
if (obj instanceof RetainLogEntity) { if (obj instanceof RetainLogEntity) {
RetainLogEntity tmp = (RetainLogEntity) obj; RetainLogEntity tmp = (RetainLogEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
...@@ -94,34 +98,36 @@ public class RetainLogEntity extends RetainLogVo { ...@@ -94,34 +98,36 @@ public class RetainLogEntity extends RetainLogVo {
public void initAttrValue(){ public void initAttrValue(){
this.siteId = -1L; this.recordId = -1L;
this.catalogId = -1L;
this.recordId = -1L; this.catalogCode = "";
this.catalogId = -1L; this.catalogName = "";
this.catalogCode = ""; this.certificateName = "";
this.catalogName = ""; this.certificateCode = "";
this.templateId = -1L; this.enterpriseName = "";
this.templateName = ""; this.holderName = "";
this.certificateName = ""; this.holderIDCardNo = "";
this.certificateCode = ""; this.certificateStatus = 1;
this.enterpriseName = ""; this.certificateUrl = "";
this.holderName = ""; this.previewUrl = "";
this.holderIDCardNo = ""; this.siteId = -1L;
this.certificateStatus = 1; this.templateId = -1L;
this.certificateUrl = ""; this.templateName = "";
this.previewUrl = ""; this.mobile = "";
} }
} }
\ No newline at end of file
...@@ -3,11 +3,11 @@ package com.mortals.xhx.module.record.model; ...@@ -3,11 +3,11 @@ package com.mortals.xhx.module.record.model;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.record.model.RetainLogEntity; import com.mortals.xhx.module.record.model.RetainLogEntity;
/** /**
* 证照持有查询对象 * 证照持有查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-05-24 * @date 2023-07-05
*/ */
public class RetainLogQuery extends RetainLogEntity { public class RetainLogQuery extends RetainLogEntity {
/** 开始 序号,主键,自增长 */ /** 开始 序号,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -24,21 +24,6 @@ public class RetainLogQuery extends RetainLogEntity { ...@@ -24,21 +24,6 @@ public class RetainLogQuery extends RetainLogEntity {
/** 序号,主键,自增长排除列表 */ /** 序号,主键,自增长排除列表 */
private List <Long> idNotList; private List <Long> idNotList;
/** 开始 站点id */
private Long siteIdStart;
/** 结束 站点id */
private Long siteIdEnd;
/** 增加 站点id */
private Long siteIdIncrement;
/** 站点id列表 */
private List <Long> siteIdList;
/** 站点id排除列表 */
private List <Long> siteIdNotList;
/** 开始 证照档案ID */ /** 开始 证照档案ID */
private Long recordIdStart; private Long recordIdStart;
...@@ -79,26 +64,6 @@ public class RetainLogQuery extends RetainLogEntity { ...@@ -79,26 +64,6 @@ public class RetainLogQuery extends RetainLogEntity {
/** 目录名称排除列表 */ /** 目录名称排除列表 */
private List <String> catalogNameNotList; private List <String> catalogNameNotList;
/** 开始 证照目录模板ID */
private Long templateIdStart;
/** 结束 证照目录模板ID */
private Long templateIdEnd;
/** 增加 证照目录模板ID */
private Long templateIdIncrement;
/** 证照目录模板ID列表 */
private List <Long> templateIdList;
/** 证照目录模板ID排除列表 */
private List <Long> templateIdNotList;
/** 证照模板名称 */
private List<String> templateNameList;
/** 证照模板名称排除列表 */
private List <String> templateNameNotList;
/** 证照名称 */ /** 证照名称 */
private List<String> certificateNameList; private List<String> certificateNameList;
...@@ -191,6 +156,46 @@ public class RetainLogQuery extends RetainLogEntity { ...@@ -191,6 +156,46 @@ public class RetainLogQuery extends RetainLogEntity {
/** 结束 更新时间 */ /** 结束 更新时间 */
private String updateTimeEnd; private String updateTimeEnd;
/** 开始 站点id */
private Long siteIdStart;
/** 结束 站点id */
private Long siteIdEnd;
/** 增加 站点id */
private Long siteIdIncrement;
/** 站点id列表 */
private List <Long> siteIdList;
/** 站点id排除列表 */
private List <Long> siteIdNotList;
/** 开始 证照目录模板ID */
private Long templateIdStart;
/** 结束 证照目录模板ID */
private Long templateIdEnd;
/** 增加 证照目录模板ID */
private Long templateIdIncrement;
/** 证照目录模板ID列表 */
private List <Long> templateIdList;
/** 证照目录模板ID排除列表 */
private List <Long> templateIdNotList;
/** 证照模板名称 */
private List<String> templateNameList;
/** 证照模板名称排除列表 */
private List <String> templateNameNotList;
/** 手机号码 */
private List<String> mobileList;
/** 手机号码排除列表 */
private List <String> mobileNotList;
/** 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<RetainLogQuery> orConditionList; private List<RetainLogQuery> orConditionList;
...@@ -200,1689 +205,1740 @@ public class RetainLogQuery extends RetainLogEntity { ...@@ -200,1689 +205,1740 @@ public class RetainLogQuery extends RetainLogEntity {
public RetainLogQuery(){} public RetainLogQuery(){}
/** /**
* 获取 开始 序号,主键,自增长 * 获取 开始 序号,主键,自增长
* @return idStart * @return idStart
*/ */
public Long getIdStart(){ public Long getIdStart(){
return this.idStart; return this.idStart;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public void setIdStart(Long idStart){ public void setIdStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
} }
/** /**
* 获取 结束 序号,主键,自增长 * 获取 结束 序号,主键,自增长
* @return $idEnd * @return $idEnd
*/ */
public Long getIdEnd(){ public Long getIdEnd(){
return this.idEnd; return this.idEnd;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public void setIdEnd(Long idEnd){ public void setIdEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
} }
/** /**
* 获取 增加 序号,主键,自增长 * 获取 增加 序号,主键,自增长
* @return idIncrement * @return idIncrement
*/ */
public Long getIdIncrement(){ public Long getIdIncrement(){
return this.idIncrement; return this.idIncrement;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public void setIdIncrement(Long idIncrement){ public void setIdIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idList * @return idList
*/ */
public List<Long> getIdList(){ public List<Long> getIdList(){
return this.idList; return this.idList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public void setIdList(List<Long> idList){ public void setIdList(List<Long> idList){
this.idList = idList; this.idList = idList;
} }
/** /**
* 获取 序号,主键,自增长 * 获取 序号,主键,自增长
* @return idNotList * @return idNotList
*/ */
public List<Long> getIdNotList(){ public List<Long> getIdNotList(){
return this.idNotList; return this.idNotList;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @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 recordIdStart
*/ */
public Long getSiteIdStart(){
return this.siteIdStart;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
}
/**
* 获取 结束 站点id
* @return $siteIdEnd
*/
public Long getSiteIdEnd(){
return this.siteIdEnd;
}
/**
* 设置 结束 站点id
* @param siteIdEnd
*/
public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
}
/**
* 获取 增加 站点id
* @return siteIdIncrement
*/
public Long getSiteIdIncrement(){
return this.siteIdIncrement;
}
/**
* 设置 增加 站点id
* @param siteIdIncrement
*/
public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
}
/**
* 获取 站点id
* @return siteIdList
*/
public List<Long> getSiteIdList(){
return this.siteIdList;
}
/**
* 设置 站点id
* @param siteIdList
*/
public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
}
/**
* 获取 站点id
* @return siteIdNotList
*/
public List<Long> getSiteIdNotList(){
return this.siteIdNotList;
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
}
/**
* 获取 开始 证照档案ID
* @return recordIdStart
*/
public Long getRecordIdStart(){ public Long getRecordIdStart(){
return this.recordIdStart; return this.recordIdStart;
} }
/** /**
* 设置 开始 证照档案ID * 设置 开始 证照档案ID
* @param recordIdStart * @param recordIdStart
*/ */
public void setRecordIdStart(Long recordIdStart){ public void setRecordIdStart(Long recordIdStart){
this.recordIdStart = recordIdStart; this.recordIdStart = recordIdStart;
} }
/** /**
* 获取 结束 证照档案ID * 获取 结束 证照档案ID
* @return $recordIdEnd * @return $recordIdEnd
*/ */
public Long getRecordIdEnd(){ public Long getRecordIdEnd(){
return this.recordIdEnd; return this.recordIdEnd;
} }
/** /**
* 设置 结束 证照档案ID * 设置 结束 证照档案ID
* @param recordIdEnd * @param recordIdEnd
*/ */
public void setRecordIdEnd(Long recordIdEnd){ public void setRecordIdEnd(Long recordIdEnd){
this.recordIdEnd = recordIdEnd; this.recordIdEnd = recordIdEnd;
} }
/** /**
* 获取 增加 证照档案ID * 获取 增加 证照档案ID
* @return recordIdIncrement * @return recordIdIncrement
*/ */
public Long getRecordIdIncrement(){ public Long getRecordIdIncrement(){
return this.recordIdIncrement; return this.recordIdIncrement;
} }
/** /**
* 设置 增加 证照档案ID * 设置 增加 证照档案ID
* @param recordIdIncrement * @param recordIdIncrement
*/ */
public void setRecordIdIncrement(Long recordIdIncrement){ public void setRecordIdIncrement(Long recordIdIncrement){
this.recordIdIncrement = recordIdIncrement; this.recordIdIncrement = recordIdIncrement;
} }
/** /**
* 获取 证照档案ID * 获取 证照档案ID
* @return recordIdList * @return recordIdList
*/ */
public List<Long> getRecordIdList(){ public List<Long> getRecordIdList(){
return this.recordIdList; return this.recordIdList;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdList * @param recordIdList
*/ */
public void setRecordIdList(List<Long> recordIdList){ public void setRecordIdList(List<Long> recordIdList){
this.recordIdList = recordIdList; this.recordIdList = recordIdList;
} }
/** /**
* 获取 证照档案ID * 获取 证照档案ID
* @return recordIdNotList * @return recordIdNotList
*/ */
public List<Long> getRecordIdNotList(){ public List<Long> getRecordIdNotList(){
return this.recordIdNotList; return this.recordIdNotList;
} }
/** /**
* 设置 证照档案ID * 设置 证照档案ID
* @param recordIdNotList * @param recordIdNotList
*/ */
public void setRecordIdNotList(List<Long> recordIdNotList){ public void setRecordIdNotList(List<Long> recordIdNotList){
this.recordIdNotList = recordIdNotList; this.recordIdNotList = recordIdNotList;
} }
/** /**
* 获取 开始 证照目录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 catalogCodeList * @return catalogCodeList
*/ */
public List<String> getCatalogCodeList(){ public List<String> getCatalogCodeList(){
return this.catalogCodeList; return this.catalogCodeList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeList * @param catalogCodeList
*/ */
public void setCatalogCodeList(List<String> catalogCodeList){ public void setCatalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList; this.catalogCodeList = catalogCodeList;
} }
/** /**
* 获取 证照目录编号 * 获取 证照目录编号
* @return catalogCodeNotList * @return catalogCodeNotList
*/ */
public List<String> getCatalogCodeNotList(){ public List<String> getCatalogCodeNotList(){
return this.catalogCodeNotList; return this.catalogCodeNotList;
} }
/** /**
* 设置 证照目录编号 * 设置 证照目录编号
* @param catalogCodeNotList * @param catalogCodeNotList
*/ */
public void setCatalogCodeNotList(List<String> catalogCodeNotList){ public void setCatalogCodeNotList(List<String> catalogCodeNotList){
this.catalogCodeNotList = catalogCodeNotList; this.catalogCodeNotList = catalogCodeNotList;
} }
/** /**
* 获取 目录名称 * 获取 目录名称
* @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 * 获取 证照名称
* @return templateIdStart * @return certificateNameList
*/ */
public Long getTemplateIdStart(){
return this.templateIdStart;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public void setTemplateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
}
/**
* 获取 结束 证照目录模板ID
* @return $templateIdEnd
*/
public Long getTemplateIdEnd(){
return this.templateIdEnd;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public void setTemplateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
}
/**
* 获取 增加 证照目录模板ID
* @return templateIdIncrement
*/
public Long getTemplateIdIncrement(){
return this.templateIdIncrement;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public void setTemplateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
}
/**
* 获取 证照目录模板ID
* @return templateIdList
*/
public List<Long> getTemplateIdList(){
return this.templateIdList;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public void setTemplateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
}
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public void setTemplateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
}
/**
* 获取 证照模板名称
* @return templateNameList
*/
public List<String> getTemplateNameList(){
return this.templateNameList;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public void setTemplateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
}
/**
* 获取 证照模板名称
* @return templateNameNotList
*/
public List<String> getTemplateNameNotList(){
return this.templateNameNotList;
}
/**
* 设置 证照模板名称
* @param templateNameNotList
*/
public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateNameNotList = templateNameNotList;
}
/**
* 获取 证照名称
* @return certificateNameList
*/
public List<String> getCertificateNameList(){ public List<String> getCertificateNameList(){
return this.certificateNameList; return this.certificateNameList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameList * @param certificateNameList
*/ */
public void setCertificateNameList(List<String> certificateNameList){ public void setCertificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList; this.certificateNameList = certificateNameList;
} }
/** /**
* 获取 证照名称 * 获取 证照名称
* @return certificateNameNotList * @return certificateNameNotList
*/ */
public List<String> getCertificateNameNotList(){ public List<String> getCertificateNameNotList(){
return this.certificateNameNotList; return this.certificateNameNotList;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameNotList * @param certificateNameNotList
*/ */
public void setCertificateNameNotList(List<String> certificateNameNotList){ public void setCertificateNameNotList(List<String> certificateNameNotList){
this.certificateNameNotList = certificateNameNotList; this.certificateNameNotList = certificateNameNotList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeList * @return certificateCodeList
*/ */
public List<String> getCertificateCodeList(){ public List<String> getCertificateCodeList(){
return this.certificateCodeList; return this.certificateCodeList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeList * @param certificateCodeList
*/ */
public void setCertificateCodeList(List<String> certificateCodeList){ public void setCertificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList; this.certificateCodeList = certificateCodeList;
} }
/** /**
* 获取 证照编号 * 获取 证照编号
* @return certificateCodeNotList * @return certificateCodeNotList
*/ */
public List<String> getCertificateCodeNotList(){ public List<String> getCertificateCodeNotList(){
return this.certificateCodeNotList; return this.certificateCodeNotList;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeNotList * @param certificateCodeNotList
*/ */
public void setCertificateCodeNotList(List<String> certificateCodeNotList){ public void setCertificateCodeNotList(List<String> certificateCodeNotList){
this.certificateCodeNotList = certificateCodeNotList; this.certificateCodeNotList = certificateCodeNotList;
} }
/** /**
* 获取 企业名称 * 获取 企业名称
* @return enterpriseNameList * @return enterpriseNameList
*/ */
public List<String> getEnterpriseNameList(){ public List<String> getEnterpriseNameList(){
return this.enterpriseNameList; return this.enterpriseNameList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public void setEnterpriseNameList(List<String> enterpriseNameList){ public void setEnterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
} }
/** /**
* 获取 企业名称 * 获取 企业名称
* @return enterpriseNameNotList * @return enterpriseNameNotList
*/ */
public List<String> getEnterpriseNameNotList(){ public List<String> getEnterpriseNameNotList(){
return this.enterpriseNameNotList; return this.enterpriseNameNotList;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameNotList * @param enterpriseNameNotList
*/ */
public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){ public void setEnterpriseNameNotList(List<String> enterpriseNameNotList){
this.enterpriseNameNotList = enterpriseNameNotList; this.enterpriseNameNotList = enterpriseNameNotList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameList * @return holderNameList
*/ */
public List<String> getHolderNameList(){ public List<String> getHolderNameList(){
return this.holderNameList; return this.holderNameList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public void setHolderNameList(List<String> holderNameList){ public void setHolderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
} }
/** /**
* 获取 持有者姓名 * 获取 持有者姓名
* @return holderNameNotList * @return holderNameNotList
*/ */
public List<String> getHolderNameNotList(){ public List<String> getHolderNameNotList(){
return this.holderNameNotList; return this.holderNameNotList;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameNotList * @param holderNameNotList
*/ */
public void setHolderNameNotList(List<String> holderNameNotList){ public void setHolderNameNotList(List<String> holderNameNotList){
this.holderNameNotList = holderNameNotList; this.holderNameNotList = holderNameNotList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoList * @return holderIDCardNoList
*/ */
public List<String> getHolderIDCardNoList(){ public List<String> getHolderIDCardNoList(){
return this.holderIDCardNoList; return this.holderIDCardNoList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public void setHolderIDCardNoList(List<String> holderIDCardNoList){ public void setHolderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
} }
/** /**
* 获取 持有者证件号码 * 获取 持有者证件号码
* @return holderIDCardNoNotList * @return holderIDCardNoNotList
*/ */
public List<String> getHolderIDCardNoNotList(){ public List<String> getHolderIDCardNoNotList(){
return this.holderIDCardNoNotList; return this.holderIDCardNoNotList;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoNotList * @param holderIDCardNoNotList
*/ */
public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){ public void setHolderIDCardNoNotList(List<String> holderIDCardNoNotList){
this.holderIDCardNoNotList = holderIDCardNoNotList; this.holderIDCardNoNotList = holderIDCardNoNotList;
} }
/** /**
* 获取 开始 证照状态,1正常2注销 * 获取 开始 证照状态,1正常2注销
* @return certificateStatusStart * @return certificateStatusStart
*/ */
public Integer getCertificateStatusStart(){ public Integer getCertificateStatusStart(){
return this.certificateStatusStart; return this.certificateStatusStart;
} }
/** /**
* 设置 开始 证照状态,1正常2注销 * 设置 开始 证照状态,1正常2注销
* @param certificateStatusStart * @param certificateStatusStart
*/ */
public void setCertificateStatusStart(Integer certificateStatusStart){ public void setCertificateStatusStart(Integer certificateStatusStart){
this.certificateStatusStart = certificateStatusStart; this.certificateStatusStart = certificateStatusStart;
} }
/** /**
* 获取 结束 证照状态,1正常2注销 * 获取 结束 证照状态,1正常2注销
* @return $certificateStatusEnd * @return $certificateStatusEnd
*/ */
public Integer getCertificateStatusEnd(){ public Integer getCertificateStatusEnd(){
return this.certificateStatusEnd; return this.certificateStatusEnd;
} }
/** /**
* 设置 结束 证照状态,1正常2注销 * 设置 结束 证照状态,1正常2注销
* @param certificateStatusEnd * @param certificateStatusEnd
*/ */
public void setCertificateStatusEnd(Integer certificateStatusEnd){ public void setCertificateStatusEnd(Integer certificateStatusEnd){
this.certificateStatusEnd = certificateStatusEnd; this.certificateStatusEnd = certificateStatusEnd;
} }
/** /**
* 获取 增加 证照状态,1正常2注销 * 获取 增加 证照状态,1正常2注销
* @return certificateStatusIncrement * @return certificateStatusIncrement
*/ */
public Integer getCertificateStatusIncrement(){ public Integer getCertificateStatusIncrement(){
return this.certificateStatusIncrement; return this.certificateStatusIncrement;
} }
/** /**
* 设置 增加 证照状态,1正常2注销 * 设置 增加 证照状态,1正常2注销
* @param certificateStatusIncrement * @param certificateStatusIncrement
*/ */
public void setCertificateStatusIncrement(Integer certificateStatusIncrement){ public void setCertificateStatusIncrement(Integer certificateStatusIncrement){
this.certificateStatusIncrement = certificateStatusIncrement; this.certificateStatusIncrement = certificateStatusIncrement;
} }
/** /**
* 获取 证照状态,1正常2注销 * 获取 证照状态,1正常2注销
* @return certificateStatusList * @return certificateStatusList
*/ */
public List<Integer> getCertificateStatusList(){ public List<Integer> getCertificateStatusList(){
return this.certificateStatusList; return this.certificateStatusList;
} }
/** /**
* 设置 证照状态,1正常2注销 * 设置 证照状态,1正常2注销
* @param certificateStatusList * @param certificateStatusList
*/ */
public void setCertificateStatusList(List<Integer> certificateStatusList){ public void setCertificateStatusList(List<Integer> certificateStatusList){
this.certificateStatusList = certificateStatusList; this.certificateStatusList = certificateStatusList;
} }
/** /**
* 获取 证照状态,1正常2注销 * 获取 证照状态,1正常2注销
* @return certificateStatusNotList * @return certificateStatusNotList
*/ */
public List<Integer> getCertificateStatusNotList(){ public List<Integer> getCertificateStatusNotList(){
return this.certificateStatusNotList; return this.certificateStatusNotList;
} }
/** /**
* 设置 证照状态,1正常2注销 * 设置 证照状态,1正常2注销
* @param certificateStatusNotList * @param certificateStatusNotList
*/ */
public void setCertificateStatusNotList(List<Integer> certificateStatusNotList){ public void setCertificateStatusNotList(List<Integer> certificateStatusNotList){
this.certificateStatusNotList = certificateStatusNotList; this.certificateStatusNotList = certificateStatusNotList;
} }
/** /**
* 获取 证件附件地址 * 获取 证件附件地址
* @return certificateUrlList * @return certificateUrlList
*/ */
public List<String> getCertificateUrlList(){ public List<String> getCertificateUrlList(){
return this.certificateUrlList; return this.certificateUrlList;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlList * @param certificateUrlList
*/ */
public void setCertificateUrlList(List<String> certificateUrlList){ public void setCertificateUrlList(List<String> certificateUrlList){
this.certificateUrlList = certificateUrlList; this.certificateUrlList = certificateUrlList;
} }
/** /**
* 获取 证件附件地址 * 获取 证件附件地址
* @return certificateUrlNotList * @return certificateUrlNotList
*/ */
public List<String> getCertificateUrlNotList(){ public List<String> getCertificateUrlNotList(){
return this.certificateUrlNotList; return this.certificateUrlNotList;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlNotList * @param certificateUrlNotList
*/ */
public void setCertificateUrlNotList(List<String> certificateUrlNotList){ public void setCertificateUrlNotList(List<String> certificateUrlNotList){
this.certificateUrlNotList = certificateUrlNotList; this.certificateUrlNotList = certificateUrlNotList;
} }
/** /**
* 获取 证件预览地址 * 获取 证件预览地址
* @return previewUrlList * @return previewUrlList
*/ */
public List<String> getPreviewUrlList(){ public List<String> getPreviewUrlList(){
return this.previewUrlList; return this.previewUrlList;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlList * @param previewUrlList
*/ */
public void setPreviewUrlList(List<String> previewUrlList){ public void setPreviewUrlList(List<String> previewUrlList){
this.previewUrlList = previewUrlList; this.previewUrlList = previewUrlList;
} }
/** /**
* 获取 证件预览地址 * 获取 证件预览地址
* @return previewUrlNotList * @return previewUrlNotList
*/ */
public List<String> getPreviewUrlNotList(){ public List<String> getPreviewUrlNotList(){
return this.previewUrlNotList; return this.previewUrlNotList;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlNotList * @param previewUrlNotList
*/ */
public void setPreviewUrlNotList(List<String> previewUrlNotList){ public void setPreviewUrlNotList(List<String> previewUrlNotList){
this.previewUrlNotList = previewUrlNotList; this.previewUrlNotList = previewUrlNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @return createUserIdStart * @return createUserIdStart
*/ */
public Long getCreateUserIdStart(){ public Long getCreateUserIdStart(){
return this.createUserIdStart; return this.createUserIdStart;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public void setCreateUserIdStart(Long createUserIdStart){ public void setCreateUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
} }
/** /**
* 获取 结束 创建用户 * 获取 结束 创建用户
* @return $createUserIdEnd * @return $createUserIdEnd
*/ */
public Long getCreateUserIdEnd(){ public Long getCreateUserIdEnd(){
return this.createUserIdEnd; return this.createUserIdEnd;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public void setCreateUserIdEnd(Long createUserIdEnd){ public void setCreateUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
} }
/** /**
* 获取 增加 创建用户 * 获取 增加 创建用户
* @return createUserIdIncrement * @return createUserIdIncrement
*/ */
public Long getCreateUserIdIncrement(){ public Long getCreateUserIdIncrement(){
return this.createUserIdIncrement; return this.createUserIdIncrement;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public void setCreateUserIdIncrement(Long createUserIdIncrement){ public void setCreateUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdList * @return createUserIdList
*/ */
public List<Long> getCreateUserIdList(){ public List<Long> getCreateUserIdList(){
return this.createUserIdList; return this.createUserIdList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public void setCreateUserIdList(List<Long> createUserIdList){ public void setCreateUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
} }
/** /**
* 获取 创建用户 * 获取 创建用户
* @return createUserIdNotList * @return createUserIdNotList
*/ */
public List<Long> getCreateUserIdNotList(){ public List<Long> getCreateUserIdNotList(){
return this.createUserIdNotList; return this.createUserIdNotList;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public void setCreateUserIdNotList(List<Long> createUserIdNotList){ public void setCreateUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
} }
/** /**
* 获取 开始 创建时间 * 获取 开始 创建时间
* @return createTimeStart * @return createTimeStart
*/ */
public String getCreateTimeStart(){ public String getCreateTimeStart(){
return this.createTimeStart; return this.createTimeStart;
} }
/** /**
* 设置 开始 创建时间 * 设置 开始 创建时间
* @param createTimeStart * @param createTimeStart
*/ */
public void setCreateTimeStart(String createTimeStart){ public void setCreateTimeStart(String createTimeStart){
this.createTimeStart = createTimeStart; this.createTimeStart = createTimeStart;
} }
/** /**
* 获取 结束 创建时间 * 获取 结束 创建时间
* @return createTimeEnd * @return createTimeEnd
*/ */
public String getCreateTimeEnd(){ public String getCreateTimeEnd(){
return this.createTimeEnd; return this.createTimeEnd;
} }
/** /**
* 设置 结束 创建时间 * 设置 结束 创建时间
* @param createTimeEnd * @param createTimeEnd
*/ */
public void setCreateTimeEnd(String createTimeEnd){ public void setCreateTimeEnd(String createTimeEnd){
this.createTimeEnd = createTimeEnd; this.createTimeEnd = createTimeEnd;
} }
/** /**
* 获取 开始 更新用户 * 获取 开始 更新用户
* @return updateUserIdStart * @return updateUserIdStart
*/ */
public Long getUpdateUserIdStart(){ public Long getUpdateUserIdStart(){
return this.updateUserIdStart; return this.updateUserIdStart;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public void setUpdateUserIdStart(Long updateUserIdStart){ public void setUpdateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
} }
/** /**
* 获取 结束 更新用户 * 获取 结束 更新用户
* @return $updateUserIdEnd * @return $updateUserIdEnd
*/ */
public Long getUpdateUserIdEnd(){ public Long getUpdateUserIdEnd(){
return this.updateUserIdEnd; return this.updateUserIdEnd;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public void setUpdateUserIdEnd(Long updateUserIdEnd){ public void setUpdateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
} }
/** /**
* 获取 增加 更新用户 * 获取 增加 更新用户
* @return updateUserIdIncrement * @return updateUserIdIncrement
*/ */
public Long getUpdateUserIdIncrement(){ public Long getUpdateUserIdIncrement(){
return this.updateUserIdIncrement; return this.updateUserIdIncrement;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public void setUpdateUserIdIncrement(Long updateUserIdIncrement){ public void setUpdateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdList * @return updateUserIdList
*/ */
public List<Long> getUpdateUserIdList(){ public List<Long> getUpdateUserIdList(){
return this.updateUserIdList; return this.updateUserIdList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public void setUpdateUserIdList(List<Long> updateUserIdList){ public void setUpdateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
} }
/** /**
* 获取 更新用户 * 获取 更新用户
* @return updateUserIdNotList * @return updateUserIdNotList
*/ */
public List<Long> getUpdateUserIdNotList(){ public List<Long> getUpdateUserIdNotList(){
return this.updateUserIdNotList; return this.updateUserIdNotList;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){ public void setUpdateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
} }
/** /**
* 获取 开始 更新时间 * 获取 开始 更新时间
* @return updateTimeStart * @return updateTimeStart
*/ */
public String getUpdateTimeStart(){ public String getUpdateTimeStart(){
return this.updateTimeStart; return this.updateTimeStart;
} }
/** /**
* 设置 开始 更新时间 * 设置 开始 更新时间
* @param updateTimeStart * @param updateTimeStart
*/ */
public void setUpdateTimeStart(String updateTimeStart){ public void setUpdateTimeStart(String updateTimeStart){
this.updateTimeStart = updateTimeStart; this.updateTimeStart = updateTimeStart;
} }
/** /**
* 获取 结束 更新时间 * 获取 结束 更新时间
* @return updateTimeEnd * @return updateTimeEnd
*/ */
public String getUpdateTimeEnd(){ public String getUpdateTimeEnd(){
return this.updateTimeEnd; return this.updateTimeEnd;
} }
/** /**
* 设置 结束 更新时间 * 设置 结束 更新时间
* @param updateTimeEnd * @param updateTimeEnd
*/ */
public void setUpdateTimeEnd(String updateTimeEnd){ public void setUpdateTimeEnd(String updateTimeEnd){
this.updateTimeEnd = updateTimeEnd; this.updateTimeEnd = updateTimeEnd;
} }
/** /**
* 设置 序号,主键,自增长 * 获取 开始 站点id
* @param id * @return siteIdStart
*/ */
public RetainLogQuery id(Long id){ public Long getSiteIdStart(){
setId(id); return this.siteIdStart;
return this;
}
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public RetainLogQuery idStart(Long idStart){
this.idStart = idStart;
return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 开始 站点id
* @param idEnd * @param siteIdStart
*/ */
public RetainLogQuery idEnd(Long idEnd){ public void setSiteIdStart(Long siteIdStart){
this.idEnd = idEnd; this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 获取 结束 站点id
* @param idIncrement * @return $siteIdEnd
*/ */
public RetainLogQuery idIncrement(Long idIncrement){ public Long getSiteIdEnd(){
this.idIncrement = idIncrement; return this.siteIdEnd;
return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 结束 站点id
* @param idList * @param siteIdEnd
*/ */
public RetainLogQuery idList(List<Long> idList){ public void setSiteIdEnd(Long siteIdEnd){
this.idList = idList; this.siteIdEnd = siteIdEnd;
return this; }
}
/**
* 设置 序号,主键,自增长
* @param idNotList
*/
public RetainLogQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList;
return this;
}
/** /**
* 设置 站点id * 获取 增加 站点id
* @param siteId * @return siteIdIncrement
*/ */
public RetainLogQuery siteId(Long siteId){ public Long getSiteIdIncrement(){
setSiteId(siteId); return this.siteIdIncrement;
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public RetainLogQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
} }
/** /**
* 设置 结束 站点id * 设置 增加 站点id
* @param siteIdEnd * @param siteIdIncrement
*/ */
public RetainLogQuery siteIdEnd(Long siteIdEnd){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdEnd = siteIdEnd; this.siteIdIncrement = siteIdIncrement;
return this;
} }
/** /**
* 设置 增加 站点id * 获取 站点id
* @param siteIdIncrement * @return siteIdList
*/ */
public RetainLogQuery siteIdIncrement(Long siteIdIncrement){ public List<Long> getSiteIdList(){
this.siteIdIncrement = siteIdIncrement; return this.siteIdList;
return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdList * @param siteIdList
*/ */
public RetainLogQuery siteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; }
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public RetainLogQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/** /**
* 设置 证照档案ID * 获取 站点id
* @param recordId * @return siteIdNotList
*/ */
public RetainLogQuery recordId(Long recordId){ public List<Long> getSiteIdNotList(){
setRecordId(recordId); return this.siteIdNotList;
return this;
}
/**
* 设置 开始 证照档案ID
* @param recordIdStart
*/
public RetainLogQuery recordIdStart(Long recordIdStart){
this.recordIdStart = recordIdStart;
return this;
} }
/** /**
* 设置 结束 证照档案ID * 设置 站点id
* @param recordIdEnd * @param siteIdNotList
*/ */
public RetainLogQuery recordIdEnd(Long recordIdEnd){ public void setSiteIdNotList(List<Long> siteIdNotList){
this.recordIdEnd = recordIdEnd; this.siteIdNotList = siteIdNotList;
return this;
} }
/** /**
* 设置 增加 证照档案ID * 获取 开始 证照目录模板ID
* @param recordIdIncrement * @return templateIdStart
*/ */
public RetainLogQuery recordIdIncrement(Long recordIdIncrement){ public Long getTemplateIdStart(){
this.recordIdIncrement = recordIdIncrement; return this.templateIdStart;
return this;
} }
/** /**
* 设置 证照档案ID * 设置 开始 证照目录模板ID
* @param recordIdList * @param templateIdStart
*/ */
public RetainLogQuery recordIdList(List<Long> recordIdList){ public void setTemplateIdStart(Long templateIdStart){
this.recordIdList = recordIdList; this.templateIdStart = templateIdStart;
return this; }
}
/**
* 设置 证照档案ID
* @param recordIdNotList
*/
public RetainLogQuery recordIdNotList(List<Long> recordIdNotList){
this.recordIdNotList = recordIdNotList;
return this;
}
/** /**
* 设置 证照目录ID * 获取 结束 证照目录模板ID
* @param catalogId * @return $templateIdEnd
*/ */
public RetainLogQuery catalogId(Long catalogId){ public Long getTemplateIdEnd(){
setCatalogId(catalogId); return this.templateIdEnd;
return this;
}
/**
* 设置 开始 证照目录ID
* @param catalogIdStart
*/
public RetainLogQuery catalogIdStart(Long catalogIdStart){
this.catalogIdStart = catalogIdStart;
return this;
} }
/** /**
* 设置 结束 证照目录ID * 设置 结束 证照目录模板ID
* @param catalogIdEnd * @param templateIdEnd
*/ */
public RetainLogQuery catalogIdEnd(Long catalogIdEnd){ public void setTemplateIdEnd(Long templateIdEnd){
this.catalogIdEnd = catalogIdEnd; this.templateIdEnd = templateIdEnd;
return this;
} }
/** /**
* 设置 增加 证照目录ID * 获取 增加 证照目录模板ID
* @param catalogIdIncrement * @return templateIdIncrement
*/ */
public RetainLogQuery catalogIdIncrement(Long catalogIdIncrement){ public Long getTemplateIdIncrement(){
this.catalogIdIncrement = catalogIdIncrement; return this.templateIdIncrement;
return this;
} }
/** /**
* 设置 证照目录ID * 设置 增加 证照目录模板ID
* @param catalogIdList * @param templateIdIncrement
*/ */
public RetainLogQuery catalogIdList(List<Long> catalogIdList){ public void setTemplateIdIncrement(Long templateIdIncrement){
this.catalogIdList = catalogIdList; this.templateIdIncrement = templateIdIncrement;
return this; }
}
/**
/** * 获取 证照目录模板ID
* 设置 证照目录ID * @return templateIdList
* @param catalogIdNotList */
*/ public List<Long> getTemplateIdList(){
public RetainLogQuery catalogIdNotList(List<Long> catalogIdNotList){ return this.templateIdList;
this.catalogIdNotList = catalogIdNotList; }
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public void setTemplateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
}
/**
* 获取 证照目录模板ID
* @return templateIdNotList
*/
public List<Long> getTemplateIdNotList(){
return this.templateIdNotList;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public void setTemplateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
}
/**
* 获取 证照模板名称
* @return templateNameList
*/
public List<String> getTemplateNameList(){
return this.templateNameList;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public void setTemplateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
}
/**
* 获取 证照模板名称
* @return templateNameNotList
*/
public List<String> getTemplateNameNotList(){
return this.templateNameNotList;
}
/**
* 设置 证照模板名称
* @param templateNameNotList
*/
public void setTemplateNameNotList(List<String> templateNameNotList){
this.templateNameNotList = templateNameNotList;
}
/**
* 获取 手机号码
* @return mobileList
*/
public List<String> getMobileList(){
return this.mobileList;
}
/**
* 设置 手机号码
* @param mobileList
*/
public void setMobileList(List<String> mobileList){
this.mobileList = mobileList;
}
/**
* 获取 手机号码
* @return mobileNotList
*/
public List<String> getMobileNotList(){
return this.mobileNotList;
}
/**
* 设置 手机号码
* @param mobileNotList
*/
public void setMobileNotList(List<String> mobileNotList){
this.mobileNotList = mobileNotList;
}
/**
* 设置 序号,主键,自增长
* @param id
*/
public RetainLogQuery id(Long id){
setId(id);
return this; return this;
} }
/**
* 设置 开始 序号,主键,自增长
* @param idStart
*/
public RetainLogQuery idStart(Long idStart){
this.idStart = idStart;
return this;
}
/** /**
* 设置 证照目录编号 * 设置 结束 序号,主键,自增长
* @param catalogCode * @param idEnd
*/ */
public RetainLogQuery catalogCode(String catalogCode){ public RetainLogQuery idEnd(Long idEnd){
setCatalogCode(catalogCode); this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 证照目录编号 * 设置 增加 序号,主键,自增长
* @param catalogCodeList * @param idIncrement
*/ */
public RetainLogQuery catalogCodeList(List<String> catalogCodeList){ public RetainLogQuery idIncrement(Long idIncrement){
this.catalogCodeList = catalogCodeList; this.idIncrement = idIncrement;
return this; return this;
} }
/**
* 设置 序号,主键,自增长
* @param idList
*/
public RetainLogQuery idList(List<Long> idList){
this.idList = idList;
return this;
}
/** /**
* 设置 目录名称 * 设置 序号,主键,自增长
* @param catalogName * @param idNotList
*/ */
public RetainLogQuery catalogName(String catalogName){ public RetainLogQuery idNotList(List<Long> idNotList){
setCatalogName(catalogName); this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 目录名称 * 设置 证照档案ID
* @param catalogNameList * @param recordId
*/ */
public RetainLogQuery catalogNameList(List<String> catalogNameList){ public RetainLogQuery recordId(Long recordId){
this.catalogNameList = catalogNameList; setRecordId(recordId);
return this; return this;
} }
/** /**
* 设置 证照目录模板ID * 设置 开始 证照档案ID
* @param templateId * @param recordIdStart
*/ */
public RetainLogQuery templateId(Long templateId){ public RetainLogQuery recordIdStart(Long recordIdStart){
setTemplateId(templateId); this.recordIdStart = recordIdStart;
return this; return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public RetainLogQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
} }
/** /**
* 设置 结束 证照目录模板ID * 设置 结束 证照档案ID
* @param templateIdEnd * @param recordIdEnd
*/ */
public RetainLogQuery templateIdEnd(Long templateIdEnd){ public RetainLogQuery recordIdEnd(Long recordIdEnd){
this.templateIdEnd = templateIdEnd; this.recordIdEnd = recordIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 证照目录模板ID * 设置 增加 证照档案ID
* @param templateIdIncrement * @param recordIdIncrement
*/ */
public RetainLogQuery templateIdIncrement(Long templateIdIncrement){ public RetainLogQuery recordIdIncrement(Long recordIdIncrement){
this.templateIdIncrement = templateIdIncrement; this.recordIdIncrement = recordIdIncrement;
return this; return this;
} }
/** /**
* 设置 证照目录模板ID * 设置 证照档案ID
* @param templateIdList * @param recordIdList
*/ */
public RetainLogQuery templateIdList(List<Long> templateIdList){ public RetainLogQuery recordIdList(List<Long> recordIdList){
this.templateIdList = templateIdList; this.recordIdList = recordIdList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public RetainLogQuery templateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
return this; return this;
} }
/**
* 设置 证照档案ID
* @param recordIdNotList
*/
public RetainLogQuery recordIdNotList(List<Long> recordIdNotList){
this.recordIdNotList = recordIdNotList;
return this;
}
/** /**
* 设置 证照模板名称 * 设置 证照目录ID
* @param templateName * @param catalogId
*/ */
public RetainLogQuery templateName(String templateName){ public RetainLogQuery catalogId(Long catalogId){
setTemplateName(templateName); setCatalogId(catalogId);
return this; return this;
} }
/** /**
* 设置 证照模板名称 * 设置 开始 证照目录ID
* @param templateNameList * @param catalogIdStart
*/ */
public RetainLogQuery templateNameList(List<String> templateNameList){ public RetainLogQuery catalogIdStart(Long catalogIdStart){
this.templateNameList = templateNameList; this.catalogIdStart = catalogIdStart;
return this; return this;
}
/**
* 设置 结束 证照目录ID
* @param catalogIdEnd
*/
public RetainLogQuery catalogIdEnd(Long catalogIdEnd){
this.catalogIdEnd = catalogIdEnd;
return this;
}
/**
* 设置 增加 证照目录ID
* @param catalogIdIncrement
*/
public RetainLogQuery catalogIdIncrement(Long catalogIdIncrement){
this.catalogIdIncrement = catalogIdIncrement;
return this;
}
/**
* 设置 证照目录ID
* @param catalogIdList
*/
public RetainLogQuery catalogIdList(List<Long> catalogIdList){
this.catalogIdList = catalogIdList;
return this;
}
/**
* 设置 证照目录ID
* @param catalogIdNotList
*/
public RetainLogQuery catalogIdNotList(List<Long> catalogIdNotList){
this.catalogIdNotList = catalogIdNotList;
return this;
}
/**
* 设置 证照目录编号
* @param catalogCode
*/
public RetainLogQuery catalogCode(String catalogCode){
setCatalogCode(catalogCode);
return this;
}
/**
* 设置 证照目录编号
* @param catalogCodeList
*/
public RetainLogQuery catalogCodeList(List<String> catalogCodeList){
this.catalogCodeList = catalogCodeList;
return this;
}
/**
* 设置 目录名称
* @param catalogName
*/
public RetainLogQuery catalogName(String catalogName){
setCatalogName(catalogName);
return this;
}
/**
* 设置 目录名称
* @param catalogNameList
*/
public RetainLogQuery catalogNameList(List<String> catalogNameList){
this.catalogNameList = catalogNameList;
return this;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateName * @param certificateName
*/ */
public RetainLogQuery certificateName(String certificateName){ public RetainLogQuery certificateName(String certificateName){
setCertificateName(certificateName); setCertificateName(certificateName);
return this; return this;
} }
/** /**
* 设置 证照名称 * 设置 证照名称
* @param certificateNameList * @param certificateNameList
*/ */
public RetainLogQuery certificateNameList(List<String> certificateNameList){ public RetainLogQuery certificateNameList(List<String> certificateNameList){
this.certificateNameList = certificateNameList; this.certificateNameList = certificateNameList;
return this; return this;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCode * @param certificateCode
*/ */
public RetainLogQuery certificateCode(String certificateCode){ public RetainLogQuery certificateCode(String certificateCode){
setCertificateCode(certificateCode); setCertificateCode(certificateCode);
return this; return this;
} }
/** /**
* 设置 证照编号 * 设置 证照编号
* @param certificateCodeList * @param certificateCodeList
*/ */
public RetainLogQuery certificateCodeList(List<String> certificateCodeList){ public RetainLogQuery certificateCodeList(List<String> certificateCodeList){
this.certificateCodeList = certificateCodeList; this.certificateCodeList = certificateCodeList;
return this; return this;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseName * @param enterpriseName
*/ */
public RetainLogQuery enterpriseName(String enterpriseName){ public RetainLogQuery enterpriseName(String enterpriseName){
setEnterpriseName(enterpriseName); setEnterpriseName(enterpriseName);
return this; return this;
} }
/** /**
* 设置 企业名称 * 设置 企业名称
* @param enterpriseNameList * @param enterpriseNameList
*/ */
public RetainLogQuery enterpriseNameList(List<String> enterpriseNameList){ public RetainLogQuery enterpriseNameList(List<String> enterpriseNameList){
this.enterpriseNameList = enterpriseNameList; this.enterpriseNameList = enterpriseNameList;
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderName * @param holderName
*/ */
public RetainLogQuery holderName(String holderName){ public RetainLogQuery holderName(String holderName){
setHolderName(holderName); setHolderName(holderName);
return this; return this;
} }
/** /**
* 设置 持有者姓名 * 设置 持有者姓名
* @param holderNameList * @param holderNameList
*/ */
public RetainLogQuery holderNameList(List<String> holderNameList){ public RetainLogQuery holderNameList(List<String> holderNameList){
this.holderNameList = holderNameList; this.holderNameList = holderNameList;
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNo * @param holderIDCardNo
*/ */
public RetainLogQuery holderIDCardNo(String holderIDCardNo){ public RetainLogQuery holderIDCardNo(String holderIDCardNo){
setHolderIDCardNo(holderIDCardNo); setHolderIDCardNo(holderIDCardNo);
return this; return this;
} }
/** /**
* 设置 持有者证件号码 * 设置 持有者证件号码
* @param holderIDCardNoList * @param holderIDCardNoList
*/ */
public RetainLogQuery holderIDCardNoList(List<String> holderIDCardNoList){ public RetainLogQuery holderIDCardNoList(List<String> holderIDCardNoList){
this.holderIDCardNoList = holderIDCardNoList; this.holderIDCardNoList = holderIDCardNoList;
return this; return this;
} }
/** /**
* 设置 证照状态,1正常2注销 * 设置 证照状态,1正常2注销
* @param certificateStatus * @param certificateStatus
*/ */
public RetainLogQuery certificateStatus(Integer certificateStatus){ public RetainLogQuery certificateStatus(Integer certificateStatus){
setCertificateStatus(certificateStatus); setCertificateStatus(certificateStatus);
return this; return this;
} }
/** /**
* 设置 开始 证照状态,1正常2注销 * 设置 开始 证照状态,1正常2注销
* @param certificateStatusStart * @param certificateStatusStart
*/ */
public RetainLogQuery certificateStatusStart(Integer certificateStatusStart){ public RetainLogQuery certificateStatusStart(Integer certificateStatusStart){
this.certificateStatusStart = certificateStatusStart; this.certificateStatusStart = certificateStatusStart;
return this; return this;
} }
/** /**
* 设置 结束 证照状态,1正常2注销 * 设置 结束 证照状态,1正常2注销
* @param certificateStatusEnd * @param certificateStatusEnd
*/ */
public RetainLogQuery certificateStatusEnd(Integer certificateStatusEnd){ public RetainLogQuery certificateStatusEnd(Integer certificateStatusEnd){
this.certificateStatusEnd = certificateStatusEnd; this.certificateStatusEnd = certificateStatusEnd;
return this; return this;
} }
/** /**
* 设置 增加 证照状态,1正常2注销 * 设置 增加 证照状态,1正常2注销
* @param certificateStatusIncrement * @param certificateStatusIncrement
*/ */
public RetainLogQuery certificateStatusIncrement(Integer certificateStatusIncrement){ public RetainLogQuery certificateStatusIncrement(Integer certificateStatusIncrement){
this.certificateStatusIncrement = certificateStatusIncrement; this.certificateStatusIncrement = certificateStatusIncrement;
return this; return this;
} }
/** /**
* 设置 证照状态,1正常2注销 * 设置 证照状态,1正常2注销
* @param certificateStatusList * @param certificateStatusList
*/ */
public RetainLogQuery certificateStatusList(List<Integer> certificateStatusList){ public RetainLogQuery certificateStatusList(List<Integer> certificateStatusList){
this.certificateStatusList = certificateStatusList; this.certificateStatusList = certificateStatusList;
return this; return this;
} }
/** /**
* 设置 证照状态,1正常2注销 * 设置 证照状态,1正常2注销
* @param certificateStatusNotList * @param certificateStatusNotList
*/ */
public RetainLogQuery certificateStatusNotList(List<Integer> certificateStatusNotList){ public RetainLogQuery certificateStatusNotList(List<Integer> certificateStatusNotList){
this.certificateStatusNotList = certificateStatusNotList; this.certificateStatusNotList = certificateStatusNotList;
return this; return this;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrl * @param certificateUrl
*/ */
public RetainLogQuery certificateUrl(String certificateUrl){ public RetainLogQuery certificateUrl(String certificateUrl){
setCertificateUrl(certificateUrl); setCertificateUrl(certificateUrl);
return this; return this;
} }
/** /**
* 设置 证件附件地址 * 设置 证件附件地址
* @param certificateUrlList * @param certificateUrlList
*/ */
public RetainLogQuery certificateUrlList(List<String> certificateUrlList){ public RetainLogQuery certificateUrlList(List<String> certificateUrlList){
this.certificateUrlList = certificateUrlList; this.certificateUrlList = certificateUrlList;
return this; return this;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrl * @param previewUrl
*/ */
public RetainLogQuery previewUrl(String previewUrl){ public RetainLogQuery previewUrl(String previewUrl){
setPreviewUrl(previewUrl); setPreviewUrl(previewUrl);
return this; return this;
} }
/** /**
* 设置 证件预览地址 * 设置 证件预览地址
* @param previewUrlList * @param previewUrlList
*/ */
public RetainLogQuery previewUrlList(List<String> previewUrlList){ public RetainLogQuery previewUrlList(List<String> previewUrlList){
this.previewUrlList = previewUrlList; this.previewUrlList = previewUrlList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public RetainLogQuery createUserId(Long createUserId){ public RetainLogQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public RetainLogQuery createUserIdStart(Long createUserIdStart){ public RetainLogQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public RetainLogQuery createUserIdEnd(Long createUserIdEnd){ public RetainLogQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public RetainLogQuery createUserIdIncrement(Long createUserIdIncrement){ public RetainLogQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public RetainLogQuery createUserIdList(List<Long> createUserIdList){ public RetainLogQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public RetainLogQuery createUserIdNotList(List<Long> createUserIdNotList){ public RetainLogQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public RetainLogQuery updateUserId(Long updateUserId){ public RetainLogQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public RetainLogQuery updateUserIdStart(Long updateUserIdStart){ public RetainLogQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public RetainLogQuery updateUserIdEnd(Long updateUserIdEnd){ public RetainLogQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public RetainLogQuery updateUserIdIncrement(Long updateUserIdIncrement){ public RetainLogQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public RetainLogQuery updateUserIdList(List<Long> updateUserIdList){ public RetainLogQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public RetainLogQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public RetainLogQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
return this; return this;
} }
/**
* 设置 站点id
* @param siteId
*/
public RetainLogQuery siteId(Long siteId){
setSiteId(siteId);
return this;
}
/**
* 设置 开始 站点id
* @param siteIdStart
*/
public RetainLogQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart;
return this;
}
/**
* 设置 结束 站点id
* @param siteIdEnd
*/
public RetainLogQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd;
return this;
}
/**
* 设置 增加 站点id
* @param siteIdIncrement
*/
public RetainLogQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement;
return this;
}
/**
* 设置 站点id
* @param siteIdList
*/
public RetainLogQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList;
return this;
}
/**
* 设置 站点id
* @param siteIdNotList
*/
public RetainLogQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateId
*/
public RetainLogQuery templateId(Long templateId){
setTemplateId(templateId);
return this;
}
/**
* 设置 开始 证照目录模板ID
* @param templateIdStart
*/
public RetainLogQuery templateIdStart(Long templateIdStart){
this.templateIdStart = templateIdStart;
return this;
}
/**
* 设置 结束 证照目录模板ID
* @param templateIdEnd
*/
public RetainLogQuery templateIdEnd(Long templateIdEnd){
this.templateIdEnd = templateIdEnd;
return this;
}
/**
* 设置 增加 证照目录模板ID
* @param templateIdIncrement
*/
public RetainLogQuery templateIdIncrement(Long templateIdIncrement){
this.templateIdIncrement = templateIdIncrement;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdList
*/
public RetainLogQuery templateIdList(List<Long> templateIdList){
this.templateIdList = templateIdList;
return this;
}
/**
* 设置 证照目录模板ID
* @param templateIdNotList
*/
public RetainLogQuery templateIdNotList(List<Long> templateIdNotList){
this.templateIdNotList = templateIdNotList;
return this;
}
/**
* 设置 证照模板名称
* @param templateName
*/
public RetainLogQuery templateName(String templateName){
setTemplateName(templateName);
return this;
}
/**
* 设置 证照模板名称
* @param templateNameList
*/
public RetainLogQuery templateNameList(List<String> templateNameList){
this.templateNameList = templateNameList;
return this;
}
/**
* 设置 手机号码
* @param mobile
*/
public RetainLogQuery mobile(String mobile){
setMobile(mobile);
return this;
}
/**
* 设置 手机号码
* @param mobileList
*/
public RetainLogQuery mobileList(List<String> mobileList){
this.mobileList = mobileList;
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<RetainLogQuery> getOrConditionList(){ public List<RetainLogQuery> 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<RetainLogQuery> orConditionList){ public void setOrConditionList(List<RetainLogQuery> 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<RetainLogQuery> getAndConditionList(){ public List<RetainLogQuery> 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<RetainLogQuery> andConditionList){ public void setAndConditionList(List<RetainLogQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -37,17 +37,20 @@ public class PrintLogServiceImpl extends AbstractCRUDServiceImpl<PrintLogDao, Pr ...@@ -37,17 +37,20 @@ public class PrintLogServiceImpl extends AbstractCRUDServiceImpl<PrintLogDao, Pr
PrintLogQuery condition3 = new PrintLogQuery(); PrintLogQuery condition3 = new PrintLogQuery();
PrintLogQuery condition4 = new PrintLogQuery(); PrintLogQuery condition4 = new PrintLogQuery();
PrintLogQuery condition5 = new PrintLogQuery(); PrintLogQuery condition5 = new PrintLogQuery();
PrintLogQuery condition6 = new PrintLogQuery();
condition1.setEnterpriseName(condition.toString()); condition1.setEnterpriseName(condition.toString());
condition2.setPickerName(condition.toString()); condition2.setPickerName(condition.toString());
condition3.setPickerIDCardNo(condition.toString()); condition3.setPickerIDCardNo(condition.toString());
condition4.setHolderIDCardNo(condition.toString()); condition4.setHolderIDCardNo(condition.toString());
condition5.setHolderName(condition.toString()); condition5.setHolderName(condition.toString());
condition6.setMobile(condition.toString());
List<PrintLogQuery> orConditionList = new ArrayList<>(); List<PrintLogQuery> orConditionList = new ArrayList<>();
orConditionList.add(condition1); orConditionList.add(condition1);
orConditionList.add(condition2); orConditionList.add(condition2);
orConditionList.add(condition3); orConditionList.add(condition3);
orConditionList.add(condition4); orConditionList.add(condition4);
orConditionList.add(condition5); orConditionList.add(condition5);
orConditionList.add(condition6);
query.setOrConditionList(orConditionList); query.setOrConditionList(orConditionList);
} }
return query; return query;
......
...@@ -139,6 +139,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait ...@@ -139,6 +139,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait
waitQueueEntity.setPreviewUrl(applyLogEntity.getPreviewUrl()); waitQueueEntity.setPreviewUrl(applyLogEntity.getPreviewUrl());
waitQueueEntity.setCertificateUrl(applyLogEntity.getCertificateUrl()); waitQueueEntity.setCertificateUrl(applyLogEntity.getCertificateUrl());
waitQueueEntity.setPrintStatus(YesNoEnum.NO.getValue()); waitQueueEntity.setPrintStatus(YesNoEnum.NO.getValue());
waitQueueEntity.setMobile(applyLogEntity.getMobile());
waitQueueEntity.setTotal(paramService.getParamIntValue(ParamKey.ALLOW_PRINT_MAX_COUNT)); waitQueueEntity.setTotal(paramService.getParamIntValue(ParamKey.ALLOW_PRINT_MAX_COUNT));
waitQueueEntity.setCreateUserId(applyLogEntity.getCreateUserId()); waitQueueEntity.setCreateUserId(applyLogEntity.getCreateUserId());
waitQueueEntity.setCreateTime(new Date()); waitQueueEntity.setCreateTime(new Date());
...@@ -192,6 +193,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait ...@@ -192,6 +193,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait
printLogEntity.setCreateTime(now); printLogEntity.setCreateTime(now);
printLogEntity.setPrintStatus(PrintStatus.FAIL.getValue()); printLogEntity.setPrintStatus(PrintStatus.FAIL.getValue());
printLogEntity.setStatusRemark(statusRemark); printLogEntity.setStatusRemark(statusRemark);
printLogEntity.setMobile(waitQueueEntity.getMobile());
printLogDao.insert(printLogEntity); printLogDao.insert(printLogEntity);
} }
...@@ -210,6 +212,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait ...@@ -210,6 +212,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait
retainLogEntity.setHolderName(waitQueueEntity.getHolderName()); retainLogEntity.setHolderName(waitQueueEntity.getHolderName());
retainLogEntity.setHolderIDCardNo(waitQueueEntity.getHolderIDCardNo()); retainLogEntity.setHolderIDCardNo(waitQueueEntity.getHolderIDCardNo());
retainLogEntity.setCertificateStatus(CertificateStatus.NORMAL.getValue()); retainLogEntity.setCertificateStatus(CertificateStatus.NORMAL.getValue());
retainLogEntity.setMobile(waitQueueEntity.getMobile());
retainLogEntity.setCreateUserId(waitQueueEntity.getCreateUserId()); retainLogEntity.setCreateUserId(waitQueueEntity.getCreateUserId());
retainLogEntity.setCreateTime(now); retainLogEntity.setCreateTime(now);
...@@ -227,7 +230,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait ...@@ -227,7 +230,7 @@ public class PrintWaitQueueServiceImpl extends AbstractCRUDServiceImpl<PrintWait
printLogEntity.setHolderIDCardNo(waitQueueEntity.getHolderIDCardNo()); printLogEntity.setHolderIDCardNo(waitQueueEntity.getHolderIDCardNo());
printLogEntity.setPickerName(waitQueueEntity.getPickerName()); printLogEntity.setPickerName(waitQueueEntity.getPickerName());
printLogEntity.setPickerIDCardNo(waitQueueEntity.getPickerIDCardNo()); printLogEntity.setPickerIDCardNo(waitQueueEntity.getPickerIDCardNo());
printLogEntity.setMobile(waitQueueEntity.getMobile());
printLogEntity.setPrintDate(now); printLogEntity.setPrintDate(now);
printLogEntity.setCreateUserId(waitQueueEntity.getCreateUserId()); printLogEntity.setCreateUserId(waitQueueEntity.getCreateUserId());
printLogEntity.setCreateTime(now); printLogEntity.setCreateTime(now);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
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