Commit 6e32a864 authored by 赵啸非's avatar 赵啸非

修正循环查询

parent 640f1026
...@@ -40,15 +40,27 @@ public class AppDatasetServiceImpl extends AbstractCRUDServiceImpl<AppDatasetDao ...@@ -40,15 +40,27 @@ public class AppDatasetServiceImpl extends AbstractCRUDServiceImpl<AppDatasetDao
private AppInfoFieldService appInfoFieldService; private AppInfoFieldService appInfoFieldService;
@Override @Override
protected void findAfter(AppDatasetEntity params, Context context, List<AppDatasetEntity> list) throws AppException { protected void findAfter(AppDatasetEntity params,PageInfo pageInfo, Context context, List<AppDatasetEntity> list) throws AppException {
fillSubData(list);
super.findAfter(params,pageInfo, context, list);
}
@Override
protected void findAfter(AppDatasetEntity entity, Context context, List<AppDatasetEntity> list) throws AppException {
fillSubData(list);
super.findAfter(entity, context, list);
}
private void fillSubData(List<AppDatasetEntity> list) {
List<Long> idList = list.stream().map(i -> i.getId()).collect(Collectors.toList()); List<Long> idList = list.stream().map(i -> i.getId()).collect(Collectors.toList());
AppInfoFieldQuery appInfoFieldQuery = new AppInfoFieldQuery(); AppInfoFieldQuery appInfoFieldQuery = new AppInfoFieldQuery();
appInfoFieldQuery.setDatasetIdList(idList); appInfoFieldQuery.setDatasetIdList(idList);
Map<Long, List<AppInfoFieldEntity>> appInfoFieldListMap = appInfoFieldService.find(appInfoFieldQuery).stream().collect(Collectors.groupingBy(AppInfoFieldEntity::getDatasetId)); Map<Long, List<AppInfoFieldEntity>> appInfoFieldListMap = appInfoFieldService.find(appInfoFieldQuery).stream().collect(Collectors.groupingBy(AppInfoFieldEntity::getDatasetId));
list.forEach(item -> item.setAppInfoFieldList(appInfoFieldListMap.get(item.getId()))); list.forEach(item -> item.setAppInfoFieldList(appInfoFieldListMap.get(item.getId())));
super.findAfter(params, context, list);
} }
@Override @Override
protected void saveAfter(AppDatasetEntity entity, Context context) throws AppException { protected void saveAfter(AppDatasetEntity entity, Context context) throws AppException {
if (!ObjectUtils.isEmpty(entity.getAppInfoFieldList())) { if (!ObjectUtils.isEmpty(entity.getAppInfoFieldList())) {
......
...@@ -2,6 +2,7 @@ package com.mortals.xhx.module.matter.service.impl; ...@@ -2,6 +2,7 @@ package com.mortals.xhx.module.matter.service.impl;
import com.mortals.framework.exception.AppException; import com.mortals.framework.exception.AppException;
import com.mortals.framework.model.Context; import com.mortals.framework.model.Context;
import com.mortals.framework.model.PageInfo;
import com.mortals.xhx.base.system.upload.service.UploadService; import com.mortals.xhx.base.system.upload.service.UploadService;
import com.mortals.xhx.module.matter.model.*; import com.mortals.xhx.module.matter.model.*;
import com.mortals.xhx.module.matter.service.MatterDatumFileService; import com.mortals.xhx.module.matter.service.MatterDatumFileService;
...@@ -34,14 +35,23 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD ...@@ -34,14 +35,23 @@ public class MatterDatumServiceImpl extends AbstractCRUDServiceImpl<MatterDatumD
@Autowired @Autowired
private UploadService uploadService; private UploadService uploadService;
@Override
protected void findAfter(MatterDatumEntity params, PageInfo pageInfo, Context context, List<MatterDatumEntity> list) throws AppException {
fillSubData(list);
super.findAfter(params,pageInfo, context, list);
}
@Override @Override
protected void findAfter(MatterDatumEntity params, Context context, List<MatterDatumEntity> list) throws AppException { protected void findAfter(MatterDatumEntity params, Context context, List<MatterDatumEntity> list) throws AppException {
fillSubData(list);
super.findAfter(params, context, list);
}
private void fillSubData(List<MatterDatumEntity> list) {
List<Long> idList = list.stream().map(i -> i.getId()).collect(Collectors.toList()); List<Long> idList = list.stream().map(i -> i.getId()).collect(Collectors.toList());
MatterDatumFileQuery matterDatumFileQuery = new MatterDatumFileQuery(); MatterDatumFileQuery matterDatumFileQuery = new MatterDatumFileQuery();
matterDatumFileQuery.setDatumIdList(idList); matterDatumFileQuery.setDatumIdList(idList);
Map<Long, List<MatterDatumFileEntity>> matterDatumFileListMap = matterDatumFileService.find(matterDatumFileQuery).stream().collect(Collectors.groupingBy(MatterDatumFileEntity::getDatumId)); Map<Long, List<MatterDatumFileEntity>> matterDatumFileListMap = matterDatumFileService.find(matterDatumFileQuery).stream().collect(Collectors.groupingBy(MatterDatumFileEntity::getDatumId));
list.forEach(item -> item.setMatterDatumFileList(matterDatumFileListMap.get(item.getId()))); list.forEach(item -> item.setMatterDatumFileList(matterDatumFileListMap.get(item.getId())));
super.findAfter(params, context, list);
} }
@Override @Override
......
package com.mortals.xhx.module.ph.model; package com.mortals.xhx.module.ph.model;
import java.util.List;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.ArrayList; import java.util.ArrayList;
import java.math.BigDecimal; import java.math.BigDecimal;
import cn.hutool.core.date.DateUtil; import cn.hutool.core.date.DateUtil;
import java.util.Date; import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import com.mortals.framework.annotation.Excel; import com.mortals.framework.annotation.Excel;
import com.mortals.framework.model.BaseEntityLong; import com.mortals.framework.model.BaseEntityLong;
import com.mortals.xhx.module.ph.model.vo.PhQueueVo; import com.mortals.xhx.module.ph.model.vo.PhQueueVo;
import com.mortals.xhx.module.workman.model.WorkmanEntity;
import lombok.Data; import lombok.Data;
/** /**
* 排号汇总实体对象 * 排号汇总实体对象
* *
* @author zxfei * @author zxfei
* @date 2024-04-09 * @date 2024-07-18
*/ */
@Data @Data
public class PhQueueEntity extends PhQueueVo { public class PhQueueEntity extends PhQueueVo {
...@@ -145,12 +142,21 @@ public class PhQueueEntity extends PhQueueVo { ...@@ -145,12 +142,21 @@ public class PhQueueEntity extends PhQueueVo {
* 扩展编号 * 扩展编号
*/ */
private String extNum; private String extNum;
/**
* 工作人员信息
*/
private WorkmanEntity workmanEntity=new WorkmanEntity();
public WorkmanEntity getWorkmanEntity(){
return workmanEntity;
}
public void setWorkmanEntity(WorkmanEntity workmanEntity){
this.workmanEntity = workmanEntity;
}
@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) {
if (obj == null) return false; if (obj == null) return false;
...@@ -163,7 +169,7 @@ public class PhQueueEntity extends PhQueueVo { ...@@ -163,7 +169,7 @@ public class PhQueueEntity extends PhQueueVo {
return false; return false;
} }
public void initAttrValue() { public void initAttrValue(){
this.ordernumber = ""; this.ordernumber = "";
this.style = "未叫号"; this.style = "未叫号";
this.business = ""; this.business = "";
......
package com.mortals.xhx.module.ph.model; package com.mortals.xhx.module.ph.model;
import java.util.List;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.ph.model.PhQueueEntity; import com.mortals.xhx.module.ph.model.PhQueueEntity;
/** /**
* 排号汇总查询对象 * 排号汇总查询对象
* *
* @author zxfei * @author zxfei
* @date 2024-04-09 * @date 2024-07-18
*/ */
public class PhQueueQuery extends PhQueueEntity { public class PhQueueQuery extends PhQueueEntity {
/** 开始 序号,主键,自增长 */ /** 开始 序号,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -244,2097 +245,2097 @@ public class PhQueueQuery extends PhQueueEntity { ...@@ -244,2097 +245,2097 @@ public class PhQueueQuery extends PhQueueEntity {
public PhQueueQuery(){} public PhQueueQuery(){}
/** /**
* 获取 开始 序号,主键,自增长 * 获取 开始 序号,主键,自增长
* @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;
} }
/** /**
* 获取 预约编号,为空现场取号 * 获取 预约编号,为空现场取号
* @return ordernumberList * @return ordernumberList
*/ */
public List<String> getOrdernumberList(){ public List<String> getOrdernumberList(){
return this.ordernumberList; return this.ordernumberList;
} }
/** /**
* 设置 预约编号,为空现场取号 * 设置 预约编号,为空现场取号
* @param ordernumberList * @param ordernumberList
*/ */
public void setOrdernumberList(List<String> ordernumberList){ public void setOrdernumberList(List<String> ordernumberList){
this.ordernumberList = ordernumberList; this.ordernumberList = ordernumberList;
} }
/** /**
* 获取 预约编号,为空现场取号 * 获取 预约编号,为空现场取号
* @return ordernumberNotList * @return ordernumberNotList
*/ */
public List<String> getOrdernumberNotList(){ public List<String> getOrdernumberNotList(){
return this.ordernumberNotList; return this.ordernumberNotList;
} }
/** /**
* 设置 预约编号,为空现场取号 * 设置 预约编号,为空现场取号
* @param ordernumberNotList * @param ordernumberNotList
*/ */
public void setOrdernumberNotList(List<String> ordernumberNotList){ public void setOrdernumberNotList(List<String> ordernumberNotList){
this.ordernumberNotList = ordernumberNotList; this.ordernumberNotList = ordernumberNotList;
} }
/** /**
* 获取 叫号状态 (未叫号,叫号中,完成) * 获取 叫号状态 (未叫号,叫号中,完成)
* @return styleList * @return styleList
*/ */
public List<String> getStyleList(){ public List<String> getStyleList(){
return this.styleList; return this.styleList;
} }
/** /**
* 设置 叫号状态 (未叫号,叫号中,完成) * 设置 叫号状态 (未叫号,叫号中,完成)
* @param styleList * @param styleList
*/ */
public void setStyleList(List<String> styleList){ public void setStyleList(List<String> styleList){
this.styleList = styleList; this.styleList = styleList;
} }
/** /**
* 获取 叫号状态 (未叫号,叫号中,完成) * 获取 叫号状态 (未叫号,叫号中,完成)
* @return styleNotList * @return styleNotList
*/ */
public List<String> getStyleNotList(){ public List<String> getStyleNotList(){
return this.styleNotList; return this.styleNotList;
} }
/** /**
* 设置 叫号状态 (未叫号,叫号中,完成) * 设置 叫号状态 (未叫号,叫号中,完成)
* @param styleNotList * @param styleNotList
*/ */
public void setStyleNotList(List<String> styleNotList){ public void setStyleNotList(List<String> styleNotList){
this.styleNotList = styleNotList; this.styleNotList = styleNotList;
} }
/** /**
* 获取 业务名 * 获取 业务名
* @return businessList * @return businessList
*/ */
public List<String> getBusinessList(){ public List<String> getBusinessList(){
return this.businessList; return this.businessList;
} }
/** /**
* 设置 业务名 * 设置 业务名
* @param businessList * @param businessList
*/ */
public void setBusinessList(List<String> businessList){ public void setBusinessList(List<String> businessList){
this.businessList = businessList; this.businessList = businessList;
} }
/** /**
* 获取 业务名 * 获取 业务名
* @return businessNotList * @return businessNotList
*/ */
public List<String> getBusinessNotList(){ public List<String> getBusinessNotList(){
return this.businessNotList; return this.businessNotList;
} }
/** /**
* 设置 业务名 * 设置 业务名
* @param businessNotList * @param businessNotList
*/ */
public void setBusinessNotList(List<String> businessNotList){ public void setBusinessNotList(List<String> businessNotList){
this.businessNotList = businessNotList; this.businessNotList = businessNotList;
} }
/** /**
* 获取 窗口名 * 获取 窗口名
* @return windowNameList * @return windowNameList
*/ */
public List<String> getWindowNameList(){ public List<String> getWindowNameList(){
return this.windowNameList; return this.windowNameList;
} }
/** /**
* 设置 窗口名 * 设置 窗口名
* @param windowNameList * @param windowNameList
*/ */
public void setWindowNameList(List<String> windowNameList){ public void setWindowNameList(List<String> windowNameList){
this.windowNameList = windowNameList; this.windowNameList = windowNameList;
} }
/** /**
* 获取 窗口名 * 获取 窗口名
* @return windowNameNotList * @return windowNameNotList
*/ */
public List<String> getWindowNameNotList(){ public List<String> getWindowNameNotList(){
return this.windowNameNotList; return this.windowNameNotList;
} }
/** /**
* 设置 窗口名 * 设置 窗口名
* @param windowNameNotList * @param windowNameNotList
*/ */
public void setWindowNameNotList(List<String> windowNameNotList){ public void setWindowNameNotList(List<String> windowNameNotList){
this.windowNameNotList = windowNameNotList; this.windowNameNotList = windowNameNotList;
} }
/** /**
* 获取 窗口编号 * 获取 窗口编号
* @return windowFromnumList * @return windowFromnumList
*/ */
public List<String> getWindowFromnumList(){ public List<String> getWindowFromnumList(){
return this.windowFromnumList; return this.windowFromnumList;
} }
/** /**
* 设置 窗口编号 * 设置 窗口编号
* @param windowFromnumList * @param windowFromnumList
*/ */
public void setWindowFromnumList(List<String> windowFromnumList){ public void setWindowFromnumList(List<String> windowFromnumList){
this.windowFromnumList = windowFromnumList; this.windowFromnumList = windowFromnumList;
} }
/** /**
* 获取 窗口编号 * 获取 窗口编号
* @return windowFromnumNotList * @return windowFromnumNotList
*/ */
public List<String> getWindowFromnumNotList(){ public List<String> getWindowFromnumNotList(){
return this.windowFromnumNotList; return this.windowFromnumNotList;
} }
/** /**
* 设置 窗口编号 * 设置 窗口编号
* @param windowFromnumNotList * @param windowFromnumNotList
*/ */
public void setWindowFromnumNotList(List<String> windowFromnumNotList){ public void setWindowFromnumNotList(List<String> windowFromnumNotList){
this.windowFromnumNotList = windowFromnumNotList; this.windowFromnumNotList = windowFromnumNotList;
} }
/** /**
* 获取 流水编号,当天的第xxx号 * 获取 流水编号,当天的第xxx号
* @return flownumList * @return flownumList
*/ */
public List<String> getFlownumList(){ public List<String> getFlownumList(){
return this.flownumList; return this.flownumList;
} }
/** /**
* 设置 流水编号,当天的第xxx号 * 设置 流水编号,当天的第xxx号
* @param flownumList * @param flownumList
*/ */
public void setFlownumList(List<String> flownumList){ public void setFlownumList(List<String> flownumList){
this.flownumList = flownumList; this.flownumList = flownumList;
} }
/** /**
* 获取 流水编号,当天的第xxx号 * 获取 流水编号,当天的第xxx号
* @return flownumNotList * @return flownumNotList
*/ */
public List<String> getFlownumNotList(){ public List<String> getFlownumNotList(){
return this.flownumNotList; return this.flownumNotList;
} }
/** /**
* 设置 流水编号,当天的第xxx号 * 设置 流水编号,当天的第xxx号
* @param flownumNotList * @param flownumNotList
*/ */
public void setFlownumNotList(List<String> flownumNotList){ public void setFlownumNotList(List<String> flownumNotList){
this.flownumNotList = flownumNotList; this.flownumNotList = flownumNotList;
} }
/** /**
* 获取 呼叫转移号 * 获取 呼叫转移号
* @return formernumList * @return formernumList
*/ */
public List<String> getFormernumList(){ public List<String> getFormernumList(){
return this.formernumList; return this.formernumList;
} }
/** /**
* 设置 呼叫转移号 * 设置 呼叫转移号
* @param formernumList * @param formernumList
*/ */
public void setFormernumList(List<String> formernumList){ public void setFormernumList(List<String> formernumList){
this.formernumList = formernumList; this.formernumList = formernumList;
} }
/** /**
* 获取 呼叫转移号 * 获取 呼叫转移号
* @return formernumNotList * @return formernumNotList
*/ */
public List<String> getFormernumNotList(){ public List<String> getFormernumNotList(){
return this.formernumNotList; return this.formernumNotList;
} }
/** /**
* 设置 呼叫转移号 * 设置 呼叫转移号
* @param formernumNotList * @param formernumNotList
*/ */
public void setFormernumNotList(List<String> formernumNotList){ public void setFormernumNotList(List<String> formernumNotList){
this.formernumNotList = formernumNotList; this.formernumNotList = formernumNotList;
} }
/** /**
* 获取 身份证号 * 获取 身份证号
* @return peopleIdcardList * @return peopleIdcardList
*/ */
public List<String> getPeopleIdcardList(){ public List<String> getPeopleIdcardList(){
return this.peopleIdcardList; return this.peopleIdcardList;
} }
/** /**
* 设置 身份证号 * 设置 身份证号
* @param peopleIdcardList * @param peopleIdcardList
*/ */
public void setPeopleIdcardList(List<String> peopleIdcardList){ public void setPeopleIdcardList(List<String> peopleIdcardList){
this.peopleIdcardList = peopleIdcardList; this.peopleIdcardList = peopleIdcardList;
} }
/** /**
* 获取 身份证号 * 获取 身份证号
* @return peopleIdcardNotList * @return peopleIdcardNotList
*/ */
public List<String> getPeopleIdcardNotList(){ public List<String> getPeopleIdcardNotList(){
return this.peopleIdcardNotList; return this.peopleIdcardNotList;
} }
/** /**
* 设置 身份证号 * 设置 身份证号
* @param peopleIdcardNotList * @param peopleIdcardNotList
*/ */
public void setPeopleIdcardNotList(List<String> peopleIdcardNotList){ public void setPeopleIdcardNotList(List<String> peopleIdcardNotList){
this.peopleIdcardNotList = peopleIdcardNotList; this.peopleIdcardNotList = peopleIdcardNotList;
} }
/** /**
* 获取 姓名 * 获取 姓名
* @return peopleNameList * @return peopleNameList
*/ */
public List<String> getPeopleNameList(){ public List<String> getPeopleNameList(){
return this.peopleNameList; return this.peopleNameList;
} }
/** /**
* 设置 姓名 * 设置 姓名
* @param peopleNameList * @param peopleNameList
*/ */
public void setPeopleNameList(List<String> peopleNameList){ public void setPeopleNameList(List<String> peopleNameList){
this.peopleNameList = peopleNameList; this.peopleNameList = peopleNameList;
} }
/** /**
* 获取 姓名 * 获取 姓名
* @return peopleNameNotList * @return peopleNameNotList
*/ */
public List<String> getPeopleNameNotList(){ public List<String> getPeopleNameNotList(){
return this.peopleNameNotList; return this.peopleNameNotList;
} }
/** /**
* 设置 姓名 * 设置 姓名
* @param peopleNameNotList * @param peopleNameNotList
*/ */
public void setPeopleNameNotList(List<String> peopleNameNotList){ public void setPeopleNameNotList(List<String> peopleNameNotList){
this.peopleNameNotList = peopleNameNotList; this.peopleNameNotList = peopleNameNotList;
} }
/** /**
* 获取 性别 * 获取 性别
* @return peopleSexList * @return peopleSexList
*/ */
public List<String> getPeopleSexList(){ public List<String> getPeopleSexList(){
return this.peopleSexList; return this.peopleSexList;
} }
/** /**
* 设置 性别 * 设置 性别
* @param peopleSexList * @param peopleSexList
*/ */
public void setPeopleSexList(List<String> peopleSexList){ public void setPeopleSexList(List<String> peopleSexList){
this.peopleSexList = peopleSexList; this.peopleSexList = peopleSexList;
} }
/** /**
* 获取 性别 * 获取 性别
* @return peopleSexNotList * @return peopleSexNotList
*/ */
public List<String> getPeopleSexNotList(){ public List<String> getPeopleSexNotList(){
return this.peopleSexNotList; return this.peopleSexNotList;
} }
/** /**
* 设置 性别 * 设置 性别
* @param peopleSexNotList * @param peopleSexNotList
*/ */
public void setPeopleSexNotList(List<String> peopleSexNotList){ public void setPeopleSexNotList(List<String> peopleSexNotList){
this.peopleSexNotList = peopleSexNotList; this.peopleSexNotList = peopleSexNotList;
} }
/** /**
* 获取 手机号 * 获取 手机号
* @return peoplePhoneList * @return peoplePhoneList
*/ */
public List<String> getPeoplePhoneList(){ public List<String> getPeoplePhoneList(){
return this.peoplePhoneList; return this.peoplePhoneList;
} }
/** /**
* 设置 手机号 * 设置 手机号
* @param peoplePhoneList * @param peoplePhoneList
*/ */
public void setPeoplePhoneList(List<String> peoplePhoneList){ public void setPeoplePhoneList(List<String> peoplePhoneList){
this.peoplePhoneList = peoplePhoneList; this.peoplePhoneList = peoplePhoneList;
} }
/** /**
* 获取 手机号 * 获取 手机号
* @return peoplePhoneNotList * @return peoplePhoneNotList
*/ */
public List<String> getPeoplePhoneNotList(){ public List<String> getPeoplePhoneNotList(){
return this.peoplePhoneNotList; return this.peoplePhoneNotList;
} }
/** /**
* 设置 手机号 * 设置 手机号
* @param peoplePhoneNotList * @param peoplePhoneNotList
*/ */
public void setPeoplePhoneNotList(List<String> peoplePhoneNotList){ public void setPeoplePhoneNotList(List<String> peoplePhoneNotList){
this.peoplePhoneNotList = peoplePhoneNotList; this.peoplePhoneNotList = peoplePhoneNotList;
} }
/** /**
* 获取 工作人员姓名 * 获取 工作人员姓名
* @return workmanNameList * @return workmanNameList
*/ */
public List<String> getWorkmanNameList(){ public List<String> getWorkmanNameList(){
return this.workmanNameList; return this.workmanNameList;
} }
/** /**
* 设置 工作人员姓名 * 设置 工作人员姓名
* @param workmanNameList * @param workmanNameList
*/ */
public void setWorkmanNameList(List<String> workmanNameList){ public void setWorkmanNameList(List<String> workmanNameList){
this.workmanNameList = workmanNameList; this.workmanNameList = workmanNameList;
} }
/** /**
* 获取 工作人员姓名 * 获取 工作人员姓名
* @return workmanNameNotList * @return workmanNameNotList
*/ */
public List<String> getWorkmanNameNotList(){ public List<String> getWorkmanNameNotList(){
return this.workmanNameNotList; return this.workmanNameNotList;
} }
/** /**
* 设置 工作人员姓名 * 设置 工作人员姓名
* @param workmanNameNotList * @param workmanNameNotList
*/ */
public void setWorkmanNameNotList(List<String> workmanNameNotList){ public void setWorkmanNameNotList(List<String> workmanNameNotList){
this.workmanNameNotList = workmanNameNotList; this.workmanNameNotList = workmanNameNotList;
} }
/** /**
* 获取 工作人员工号 * 获取 工作人员工号
* @return workmanNumberList * @return workmanNumberList
*/ */
public List<String> getWorkmanNumberList(){ public List<String> getWorkmanNumberList(){
return this.workmanNumberList; return this.workmanNumberList;
} }
/** /**
* 设置 工作人员工号 * 设置 工作人员工号
* @param workmanNumberList * @param workmanNumberList
*/ */
public void setWorkmanNumberList(List<String> workmanNumberList){ public void setWorkmanNumberList(List<String> workmanNumberList){
this.workmanNumberList = workmanNumberList; this.workmanNumberList = workmanNumberList;
} }
/** /**
* 获取 工作人员工号 * 获取 工作人员工号
* @return workmanNumberNotList * @return workmanNumberNotList
*/ */
public List<String> getWorkmanNumberNotList(){ public List<String> getWorkmanNumberNotList(){
return this.workmanNumberNotList; return this.workmanNumberNotList;
} }
/** /**
* 设置 工作人员工号 * 设置 工作人员工号
* @param workmanNumberNotList * @param workmanNumberNotList
*/ */
public void setWorkmanNumberNotList(List<String> workmanNumberNotList){ public void setWorkmanNumberNotList(List<String> workmanNumberNotList){
this.workmanNumberNotList = workmanNumberNotList; this.workmanNumberNotList = workmanNumberNotList;
} }
/** /**
* 获取 开始 取号时间 * 获取 开始 取号时间
* @return taketimeStart * @return taketimeStart
*/ */
public String getTaketimeStart(){ public String getTaketimeStart(){
return this.taketimeStart; return this.taketimeStart;
} }
/** /**
* 设置 开始 取号时间 * 设置 开始 取号时间
* @param taketimeStart * @param taketimeStart
*/ */
public void setTaketimeStart(String taketimeStart){ public void setTaketimeStart(String taketimeStart){
this.taketimeStart = taketimeStart; this.taketimeStart = taketimeStart;
} }
/** /**
* 获取 结束 取号时间 * 获取 结束 取号时间
* @return taketimeEnd * @return taketimeEnd
*/ */
public String getTaketimeEnd(){ public String getTaketimeEnd(){
return this.taketimeEnd; return this.taketimeEnd;
} }
/** /**
* 设置 结束 取号时间 * 设置 结束 取号时间
* @param taketimeEnd * @param taketimeEnd
*/ */
public void setTaketimeEnd(String taketimeEnd){ public void setTaketimeEnd(String taketimeEnd){
this.taketimeEnd = taketimeEnd; this.taketimeEnd = taketimeEnd;
} }
/** /**
* 获取 开始 叫号时间 * 获取 开始 叫号时间
* @return calltimeStart * @return calltimeStart
*/ */
public String getCalltimeStart(){ public String getCalltimeStart(){
return this.calltimeStart; return this.calltimeStart;
} }
/** /**
* 设置 开始 叫号时间 * 设置 开始 叫号时间
* @param calltimeStart * @param calltimeStart
*/ */
public void setCalltimeStart(String calltimeStart){ public void setCalltimeStart(String calltimeStart){
this.calltimeStart = calltimeStart; this.calltimeStart = calltimeStart;
} }
/** /**
* 获取 结束 叫号时间 * 获取 结束 叫号时间
* @return calltimeEnd * @return calltimeEnd
*/ */
public String getCalltimeEnd(){ public String getCalltimeEnd(){
return this.calltimeEnd; return this.calltimeEnd;
} }
/** /**
* 设置 结束 叫号时间 * 设置 结束 叫号时间
* @param calltimeEnd * @param calltimeEnd
*/ */
public void setCalltimeEnd(String calltimeEnd){ public void setCalltimeEnd(String calltimeEnd){
this.calltimeEnd = calltimeEnd; this.calltimeEnd = calltimeEnd;
} }
/** /**
* 获取 开始 结束时间 * 获取 开始 结束时间
* @return endtimeStart * @return endtimeStart
*/ */
public String getEndtimeStart(){ public String getEndtimeStart(){
return this.endtimeStart; return this.endtimeStart;
} }
/** /**
* 设置 开始 结束时间 * 设置 开始 结束时间
* @param endtimeStart * @param endtimeStart
*/ */
public void setEndtimeStart(String endtimeStart){ public void setEndtimeStart(String endtimeStart){
this.endtimeStart = endtimeStart; this.endtimeStart = endtimeStart;
} }
/** /**
* 获取 结束 结束时间 * 获取 结束 结束时间
* @return endtimeEnd * @return endtimeEnd
*/ */
public String getEndtimeEnd(){ public String getEndtimeEnd(){
return this.endtimeEnd; return this.endtimeEnd;
} }
/** /**
* 设置 结束 结束时间 * 设置 结束 结束时间
* @param endtimeEnd * @param endtimeEnd
*/ */
public void setEndtimeEnd(String endtimeEnd){ public void setEndtimeEnd(String endtimeEnd){
this.endtimeEnd = endtimeEnd; this.endtimeEnd = endtimeEnd;
} }
/** /**
* 获取 开始 等待时间,单位s * 获取 开始 等待时间,单位s
* @return waitTimeStart * @return waitTimeStart
*/ */
public Integer getWaitTimeStart(){ public Integer getWaitTimeStart(){
return this.waitTimeStart; return this.waitTimeStart;
} }
/** /**
* 设置 开始 等待时间,单位s * 设置 开始 等待时间,单位s
* @param waitTimeStart * @param waitTimeStart
*/ */
public void setWaitTimeStart(Integer waitTimeStart){ public void setWaitTimeStart(Integer waitTimeStart){
this.waitTimeStart = waitTimeStart; this.waitTimeStart = waitTimeStart;
} }
/** /**
* 获取 结束 等待时间,单位s * 获取 结束 等待时间,单位s
* @return $waitTimeEnd * @return $waitTimeEnd
*/ */
public Integer getWaitTimeEnd(){ public Integer getWaitTimeEnd(){
return this.waitTimeEnd; return this.waitTimeEnd;
} }
/** /**
* 设置 结束 等待时间,单位s * 设置 结束 等待时间,单位s
* @param waitTimeEnd * @param waitTimeEnd
*/ */
public void setWaitTimeEnd(Integer waitTimeEnd){ public void setWaitTimeEnd(Integer waitTimeEnd){
this.waitTimeEnd = waitTimeEnd; this.waitTimeEnd = waitTimeEnd;
} }
/** /**
* 获取 增加 等待时间,单位s * 获取 增加 等待时间,单位s
* @return waitTimeIncrement * @return waitTimeIncrement
*/ */
public Integer getWaitTimeIncrement(){ public Integer getWaitTimeIncrement(){
return this.waitTimeIncrement; return this.waitTimeIncrement;
} }
/** /**
* 设置 增加 等待时间,单位s * 设置 增加 等待时间,单位s
* @param waitTimeIncrement * @param waitTimeIncrement
*/ */
public void setWaitTimeIncrement(Integer waitTimeIncrement){ public void setWaitTimeIncrement(Integer waitTimeIncrement){
this.waitTimeIncrement = waitTimeIncrement; this.waitTimeIncrement = waitTimeIncrement;
} }
/** /**
* 获取 等待时间,单位s * 获取 等待时间,单位s
* @return waitTimeList * @return waitTimeList
*/ */
public List<Integer> getWaitTimeList(){ public List<Integer> getWaitTimeList(){
return this.waitTimeList; return this.waitTimeList;
} }
/** /**
* 设置 等待时间,单位s * 设置 等待时间,单位s
* @param waitTimeList * @param waitTimeList
*/ */
public void setWaitTimeList(List<Integer> waitTimeList){ public void setWaitTimeList(List<Integer> waitTimeList){
this.waitTimeList = waitTimeList; this.waitTimeList = waitTimeList;
} }
/** /**
* 获取 等待时间,单位s * 获取 等待时间,单位s
* @return waitTimeNotList * @return waitTimeNotList
*/ */
public List<Integer> getWaitTimeNotList(){ public List<Integer> getWaitTimeNotList(){
return this.waitTimeNotList; return this.waitTimeNotList;
} }
/** /**
* 设置 等待时间,单位s * 设置 等待时间,单位s
* @param waitTimeNotList * @param waitTimeNotList
*/ */
public void setWaitTimeNotList(List<Integer> waitTimeNotList){ public void setWaitTimeNotList(List<Integer> waitTimeNotList){
this.waitTimeNotList = waitTimeNotList; this.waitTimeNotList = waitTimeNotList;
} }
/** /**
* 获取 开始 办理时间,单位s * 获取 开始 办理时间,单位s
* @return handleTimeStart * @return handleTimeStart
*/ */
public Integer getHandleTimeStart(){ public Integer getHandleTimeStart(){
return this.handleTimeStart; return this.handleTimeStart;
} }
/** /**
* 设置 开始 办理时间,单位s * 设置 开始 办理时间,单位s
* @param handleTimeStart * @param handleTimeStart
*/ */
public void setHandleTimeStart(Integer handleTimeStart){ public void setHandleTimeStart(Integer handleTimeStart){
this.handleTimeStart = handleTimeStart; this.handleTimeStart = handleTimeStart;
} }
/** /**
* 获取 结束 办理时间,单位s * 获取 结束 办理时间,单位s
* @return $handleTimeEnd * @return $handleTimeEnd
*/ */
public Integer getHandleTimeEnd(){ public Integer getHandleTimeEnd(){
return this.handleTimeEnd; return this.handleTimeEnd;
} }
/** /**
* 设置 结束 办理时间,单位s * 设置 结束 办理时间,单位s
* @param handleTimeEnd * @param handleTimeEnd
*/ */
public void setHandleTimeEnd(Integer handleTimeEnd){ public void setHandleTimeEnd(Integer handleTimeEnd){
this.handleTimeEnd = handleTimeEnd; this.handleTimeEnd = handleTimeEnd;
} }
/** /**
* 获取 增加 办理时间,单位s * 获取 增加 办理时间,单位s
* @return handleTimeIncrement * @return handleTimeIncrement
*/ */
public Integer getHandleTimeIncrement(){ public Integer getHandleTimeIncrement(){
return this.handleTimeIncrement; return this.handleTimeIncrement;
} }
/** /**
* 设置 增加 办理时间,单位s * 设置 增加 办理时间,单位s
* @param handleTimeIncrement * @param handleTimeIncrement
*/ */
public void setHandleTimeIncrement(Integer handleTimeIncrement){ public void setHandleTimeIncrement(Integer handleTimeIncrement){
this.handleTimeIncrement = handleTimeIncrement; this.handleTimeIncrement = handleTimeIncrement;
} }
/** /**
* 获取 办理时间,单位s * 获取 办理时间,单位s
* @return handleTimeList * @return handleTimeList
*/ */
public List<Integer> getHandleTimeList(){ public List<Integer> getHandleTimeList(){
return this.handleTimeList; return this.handleTimeList;
} }
/** /**
* 设置 办理时间,单位s * 设置 办理时间,单位s
* @param handleTimeList * @param handleTimeList
*/ */
public void setHandleTimeList(List<Integer> handleTimeList){ public void setHandleTimeList(List<Integer> handleTimeList){
this.handleTimeList = handleTimeList; this.handleTimeList = handleTimeList;
} }
/** /**
* 获取 办理时间,单位s * 获取 办理时间,单位s
* @return handleTimeNotList * @return handleTimeNotList
*/ */
public List<Integer> getHandleTimeNotList(){ public List<Integer> getHandleTimeNotList(){
return this.handleTimeNotList; return this.handleTimeNotList;
} }
/** /**
* 设置 办理时间,单位s * 设置 办理时间,单位s
* @param handleTimeNotList * @param handleTimeNotList
*/ */
public void setHandleTimeNotList(List<Integer> handleTimeNotList){ public void setHandleTimeNotList(List<Integer> handleTimeNotList){
this.handleTimeNotList = handleTimeNotList; this.handleTimeNotList = handleTimeNotList;
} }
/** /**
* 获取 取号设备名 * 获取 取号设备名
* @return deviceNameList * @return deviceNameList
*/ */
public List<String> getDeviceNameList(){ public List<String> getDeviceNameList(){
return this.deviceNameList; return this.deviceNameList;
} }
/** /**
* 设置 取号设备名 * 设置 取号设备名
* @param deviceNameList * @param deviceNameList
*/ */
public void setDeviceNameList(List<String> deviceNameList){ public void setDeviceNameList(List<String> deviceNameList){
this.deviceNameList = deviceNameList; this.deviceNameList = deviceNameList;
} }
/** /**
* 获取 取号设备名 * 获取 取号设备名
* @return deviceNameNotList * @return deviceNameNotList
*/ */
public List<String> getDeviceNameNotList(){ public List<String> getDeviceNameNotList(){
return this.deviceNameNotList; return this.deviceNameNotList;
} }
/** /**
* 设置 取号设备名 * 设置 取号设备名
* @param deviceNameNotList * @param deviceNameNotList
*/ */
public void setDeviceNameNotList(List<String> deviceNameNotList){ public void setDeviceNameNotList(List<String> deviceNameNotList){
this.deviceNameNotList = deviceNameNotList; this.deviceNameNotList = deviceNameNotList;
} }
/** /**
* 获取 呼叫设备 * 获取 呼叫设备
* @return callNameList * @return callNameList
*/ */
public List<String> getCallNameList(){ public List<String> getCallNameList(){
return this.callNameList; return this.callNameList;
} }
/** /**
* 设置 呼叫设备 * 设置 呼叫设备
* @param callNameList * @param callNameList
*/ */
public void setCallNameList(List<String> callNameList){ public void setCallNameList(List<String> callNameList){
this.callNameList = callNameList; this.callNameList = callNameList;
} }
/** /**
* 获取 呼叫设备 * 获取 呼叫设备
* @return callNameNotList * @return callNameNotList
*/ */
public List<String> getCallNameNotList(){ public List<String> getCallNameNotList(){
return this.callNameNotList; return this.callNameNotList;
} }
/** /**
* 设置 呼叫设备 * 设置 呼叫设备
* @param callNameNotList * @param callNameNotList
*/ */
public void setCallNameNotList(List<String> callNameNotList){ public void setCallNameNotList(List<String> callNameNotList){
this.callNameNotList = callNameNotList; this.callNameNotList = callNameNotList;
} }
/** /**
* 获取 事项名 * 获取 事项名
* @return matterNameList * @return matterNameList
*/ */
public List<String> getMatterNameList(){ public List<String> getMatterNameList(){
return this.matterNameList; return this.matterNameList;
} }
/** /**
* 设置 事项名 * 设置 事项名
* @param matterNameList * @param matterNameList
*/ */
public void setMatterNameList(List<String> matterNameList){ public void setMatterNameList(List<String> matterNameList){
this.matterNameList = matterNameList; this.matterNameList = matterNameList;
} }
/** /**
* 获取 事项名 * 获取 事项名
* @return matterNameNotList * @return matterNameNotList
*/ */
public List<String> getMatterNameNotList(){ public List<String> getMatterNameNotList(){
return this.matterNameNotList; return this.matterNameNotList;
} }
/** /**
* 设置 事项名 * 设置 事项名
* @param matterNameNotList * @param matterNameNotList
*/ */
public void setMatterNameNotList(List<String> matterNameNotList){ public void setMatterNameNotList(List<String> matterNameNotList){
this.matterNameNotList = matterNameNotList; this.matterNameNotList = matterNameNotList;
} }
/** /**
* 获取 排号队列ID,唯一 * 获取 排号队列ID,唯一
* @return queueidList * @return queueidList
*/ */
public List<String> getQueueidList(){ public List<String> getQueueidList(){
return this.queueidList; return this.queueidList;
} }
/** /**
* 设置 排号队列ID,唯一 * 设置 排号队列ID,唯一
* @param queueidList * @param queueidList
*/ */
public void setQueueidList(List<String> queueidList){ public void setQueueidList(List<String> queueidList){
this.queueidList = queueidList; this.queueidList = queueidList;
} }
/** /**
* 获取 排号队列ID,唯一 * 获取 排号队列ID,唯一
* @return queueidNotList * @return queueidNotList
*/ */
public List<String> getQueueidNotList(){ public List<String> getQueueidNotList(){
return this.queueidNotList; return this.queueidNotList;
} }
/** /**
* 设置 排号队列ID,唯一 * 设置 排号队列ID,唯一
* @param queueidNotList * @param queueidNotList
*/ */
public void setQueueidNotList(List<String> queueidNotList){ public void setQueueidNotList(List<String> queueidNotList){
this.queueidNotList = queueidNotList; this.queueidNotList = queueidNotList;
} }
/** /**
* 获取 取号方式 (现场取号,微信取号) * 获取 取号方式 (现场取号,微信取号)
* @return wySigninList * @return wySigninList
*/ */
public List<String> getWySigninList(){ public List<String> getWySigninList(){
return this.wySigninList; return this.wySigninList;
} }
/** /**
* 设置 取号方式 (现场取号,微信取号) * 设置 取号方式 (现场取号,微信取号)
* @param wySigninList * @param wySigninList
*/ */
public void setWySigninList(List<String> wySigninList){ public void setWySigninList(List<String> wySigninList){
this.wySigninList = wySigninList; this.wySigninList = wySigninList;
} }
/** /**
* 获取 取号方式 (现场取号,微信取号) * 获取 取号方式 (现场取号,微信取号)
* @return wySigninNotList * @return wySigninNotList
*/ */
public List<String> getWySigninNotList(){ public List<String> getWySigninNotList(){
return this.wySigninNotList; return this.wySigninNotList;
} }
/** /**
* 设置 取号方式 (现场取号,微信取号) * 设置 取号方式 (现场取号,微信取号)
* @param wySigninNotList * @param wySigninNotList
*/ */
public void setWySigninNotList(List<String> wySigninNotList){ public void setWySigninNotList(List<String> wySigninNotList){
this.wySigninNotList = wySigninNotList; this.wySigninNotList = wySigninNotList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return sectionNameList * @return sectionNameList
*/ */
public List<String> getSectionNameList(){ public List<String> getSectionNameList(){
return this.sectionNameList; return this.sectionNameList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param sectionNameList * @param sectionNameList
*/ */
public void setSectionNameList(List<String> sectionNameList){ public void setSectionNameList(List<String> sectionNameList){
this.sectionNameList = sectionNameList; this.sectionNameList = sectionNameList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return sectionNameNotList * @return sectionNameNotList
*/ */
public List<String> getSectionNameNotList(){ public List<String> getSectionNameNotList(){
return this.sectionNameNotList; return this.sectionNameNotList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param sectionNameNotList * @param sectionNameNotList
*/ */
public void setSectionNameNotList(List<String> sectionNameNotList){ public void setSectionNameNotList(List<String> sectionNameNotList){
this.sectionNameNotList = sectionNameNotList; this.sectionNameNotList = sectionNameNotList;
} }
/** /**
* 获取 大厅名称 * 获取 大厅名称
* @return hallNameList * @return hallNameList
*/ */
public List<String> getHallNameList(){ public List<String> getHallNameList(){
return this.hallNameList; return this.hallNameList;
} }
/** /**
* 设置 大厅名称 * 设置 大厅名称
* @param hallNameList * @param hallNameList
*/ */
public void setHallNameList(List<String> hallNameList){ public void setHallNameList(List<String> hallNameList){
this.hallNameList = hallNameList; this.hallNameList = hallNameList;
} }
/** /**
* 获取 大厅名称 * 获取 大厅名称
* @return hallNameNotList * @return hallNameNotList
*/ */
public List<String> getHallNameNotList(){ public List<String> getHallNameNotList(){
return this.hallNameNotList; return this.hallNameNotList;
} }
/** /**
* 设置 大厅名称 * 设置 大厅名称
* @param hallNameNotList * @param hallNameNotList
*/ */
public void setHallNameNotList(List<String> hallNameNotList){ public void setHallNameNotList(List<String> hallNameNotList){
this.hallNameNotList = hallNameNotList; this.hallNameNotList = hallNameNotList;
} }
/** /**
* 获取 取号设备类型 * 获取 取号设备类型
* @return deviceTypeList * @return deviceTypeList
*/ */
public List<String> getDeviceTypeList(){ public List<String> getDeviceTypeList(){
return this.deviceTypeList; return this.deviceTypeList;
} }
/** /**
* 设置 取号设备类型 * 设置 取号设备类型
* @param deviceTypeList * @param deviceTypeList
*/ */
public void setDeviceTypeList(List<String> deviceTypeList){ public void setDeviceTypeList(List<String> deviceTypeList){
this.deviceTypeList = deviceTypeList; this.deviceTypeList = deviceTypeList;
} }
/** /**
* 获取 取号设备类型 * 获取 取号设备类型
* @return deviceTypeNotList * @return deviceTypeNotList
*/ */
public List<String> getDeviceTypeNotList(){ public List<String> getDeviceTypeNotList(){
return this.deviceTypeNotList; return this.deviceTypeNotList;
} }
/** /**
* 设置 取号设备类型 * 设置 取号设备类型
* @param deviceTypeNotList * @param deviceTypeNotList
*/ */
public void setDeviceTypeNotList(List<String> deviceTypeNotList){ public void setDeviceTypeNotList(List<String> deviceTypeNotList){
this.deviceTypeNotList = deviceTypeNotList; this.deviceTypeNotList = deviceTypeNotList;
} }
/** /**
* 获取 开始 站点Id * 获取 开始 站点Id
* @return siteIdStart * @return siteIdStart
*/ */
public Long getSiteIdStart(){ public Long getSiteIdStart(){
return this.siteIdStart; return this.siteIdStart;
} }
/** /**
* 设置 开始 站点Id * 设置 开始 站点Id
* @param siteIdStart * @param siteIdStart
*/ */
public void setSiteIdStart(Long siteIdStart){ public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
} }
/** /**
* 获取 结束 站点Id * 获取 结束 站点Id
* @return $siteIdEnd * @return $siteIdEnd
*/ */
public Long getSiteIdEnd(){ public Long getSiteIdEnd(){
return this.siteIdEnd; return this.siteIdEnd;
} }
/** /**
* 设置 结束 站点Id * 设置 结束 站点Id
* @param siteIdEnd * @param siteIdEnd
*/ */
public void setSiteIdEnd(Long siteIdEnd){ public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
} }
/** /**
* 获取 增加 站点Id * 获取 增加 站点Id
* @return siteIdIncrement * @return siteIdIncrement
*/ */
public Long getSiteIdIncrement(){ public Long getSiteIdIncrement(){
return this.siteIdIncrement; return this.siteIdIncrement;
} }
/** /**
* 设置 增加 站点Id * 设置 增加 站点Id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public void setSiteIdIncrement(Long siteIdIncrement){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
} }
/** /**
* 获取 站点Id * 获取 站点Id
* @return siteIdList * @return siteIdList
*/ */
public List<Long> getSiteIdList(){ public List<Long> getSiteIdList(){
return this.siteIdList; return this.siteIdList;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdList * @param siteIdList
*/ */
public void setSiteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
} }
/** /**
* 获取 站点Id * 获取 站点Id
* @return siteIdNotList * @return siteIdNotList
*/ */
public List<Long> getSiteIdNotList(){ public List<Long> getSiteIdNotList(){
return this.siteIdNotList; return this.siteIdNotList;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdNotList * @param siteIdNotList
*/ */
public void setSiteIdNotList(List<Long> siteIdNotList){ public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
} }
/** /**
* 获取 站点编码 * 获取 站点编码
* @return siteCodeList * @return siteCodeList
*/ */
public List<String> getSiteCodeList(){ public List<String> getSiteCodeList(){
return this.siteCodeList; return this.siteCodeList;
} }
/** /**
* 设置 站点编码 * 设置 站点编码
* @param siteCodeList * @param siteCodeList
*/ */
public void setSiteCodeList(List<String> siteCodeList){ public void setSiteCodeList(List<String> siteCodeList){
this.siteCodeList = siteCodeList; this.siteCodeList = siteCodeList;
} }
/** /**
* 获取 站点编码 * 获取 站点编码
* @return siteCodeNotList * @return siteCodeNotList
*/ */
public List<String> getSiteCodeNotList(){ public List<String> getSiteCodeNotList(){
return this.siteCodeNotList; return this.siteCodeNotList;
} }
/** /**
* 设置 站点编码 * 设置 站点编码
* @param siteCodeNotList * @param siteCodeNotList
*/ */
public void setSiteCodeNotList(List<String> siteCodeNotList){ public void setSiteCodeNotList(List<String> siteCodeNotList){
this.siteCodeNotList = siteCodeNotList; this.siteCodeNotList = siteCodeNotList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameList * @return siteNameList
*/ */
public List<String> getSiteNameList(){ public List<String> getSiteNameList(){
return this.siteNameList; return this.siteNameList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public void setSiteNameList(List<String> siteNameList){ public void setSiteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameNotList * @return siteNameNotList
*/ */
public List<String> getSiteNameNotList(){ public List<String> getSiteNameNotList(){
return this.siteNameNotList; return this.siteNameNotList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameNotList * @param siteNameNotList
*/ */
public void setSiteNameNotList(List<String> siteNameNotList){ public void setSiteNameNotList(List<String> siteNameNotList){
this.siteNameNotList = siteNameNotList; this.siteNameNotList = siteNameNotList;
} }
/** /**
* 获取 扩展编号 * 获取 扩展编号
* @return extNumList * @return extNumList
*/ */
public List<String> getExtNumList(){ public List<String> getExtNumList(){
return this.extNumList; return this.extNumList;
} }
/** /**
* 设置 扩展编号 * 设置 扩展编号
* @param extNumList * @param extNumList
*/ */
public void setExtNumList(List<String> extNumList){ public void setExtNumList(List<String> extNumList){
this.extNumList = extNumList; this.extNumList = extNumList;
} }
/** /**
* 获取 扩展编号 * 获取 扩展编号
* @return extNumNotList * @return extNumNotList
*/ */
public List<String> getExtNumNotList(){ public List<String> getExtNumNotList(){
return this.extNumNotList; return this.extNumNotList;
} }
/** /**
* 设置 扩展编号 * 设置 扩展编号
* @param extNumNotList * @param extNumNotList
*/ */
public void setExtNumNotList(List<String> extNumNotList){ public void setExtNumNotList(List<String> extNumNotList){
this.extNumNotList = extNumNotList; this.extNumNotList = extNumNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 创建用户
* @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 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;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param id * @param id
*/ */
public PhQueueQuery id(Long id){ public PhQueueQuery id(Long id){
setId(id); setId(id);
return this; return this;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public PhQueueQuery idStart(Long idStart){ public PhQueueQuery idStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
return this; return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public PhQueueQuery idEnd(Long idEnd){ public PhQueueQuery idEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public PhQueueQuery idIncrement(Long idIncrement){ public PhQueueQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public PhQueueQuery idList(List<Long> idList){ public PhQueueQuery idList(List<Long> idList){
this.idList = idList; this.idList = idList;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idNotList * @param idNotList
*/ */
public PhQueueQuery idNotList(List<Long> idNotList){ public PhQueueQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 预约编号,为空现场取号 * 设置 预约编号,为空现场取号
* @param ordernumber * @param ordernumber
*/ */
public PhQueueQuery ordernumber(String ordernumber){ public PhQueueQuery ordernumber(String ordernumber){
setOrdernumber(ordernumber); setOrdernumber(ordernumber);
return this; return this;
} }
/** /**
* 设置 预约编号,为空现场取号 * 设置 预约编号,为空现场取号
* @param ordernumberList * @param ordernumberList
*/ */
public PhQueueQuery ordernumberList(List<String> ordernumberList){ public PhQueueQuery ordernumberList(List<String> ordernumberList){
this.ordernumberList = ordernumberList; this.ordernumberList = ordernumberList;
return this; return this;
} }
/** /**
* 设置 叫号状态 (未叫号,叫号中,完成) * 设置 叫号状态 (未叫号,叫号中,完成)
* @param style * @param style
*/ */
public PhQueueQuery style(String style){ public PhQueueQuery style(String style){
setStyle(style); setStyle(style);
return this; return this;
} }
/** /**
* 设置 叫号状态 (未叫号,叫号中,完成) * 设置 叫号状态 (未叫号,叫号中,完成)
* @param styleList * @param styleList
*/ */
public PhQueueQuery styleList(List<String> styleList){ public PhQueueQuery styleList(List<String> styleList){
this.styleList = styleList; this.styleList = styleList;
return this; return this;
} }
/** /**
* 设置 业务名 * 设置 业务名
* @param business * @param business
*/ */
public PhQueueQuery business(String business){ public PhQueueQuery business(String business){
setBusiness(business); setBusiness(business);
return this; return this;
} }
/** /**
* 设置 业务名 * 设置 业务名
* @param businessList * @param businessList
*/ */
public PhQueueQuery businessList(List<String> businessList){ public PhQueueQuery businessList(List<String> businessList){
this.businessList = businessList; this.businessList = businessList;
return this; return this;
} }
/** /**
* 设置 窗口名 * 设置 窗口名
* @param windowName * @param windowName
*/ */
public PhQueueQuery windowName(String windowName){ public PhQueueQuery windowName(String windowName){
setWindowName(windowName); setWindowName(windowName);
return this; return this;
} }
/** /**
* 设置 窗口名 * 设置 窗口名
* @param windowNameList * @param windowNameList
*/ */
public PhQueueQuery windowNameList(List<String> windowNameList){ public PhQueueQuery windowNameList(List<String> windowNameList){
this.windowNameList = windowNameList; this.windowNameList = windowNameList;
return this; return this;
} }
/** /**
* 设置 窗口编号 * 设置 窗口编号
* @param windowFromnum * @param windowFromnum
*/ */
public PhQueueQuery windowFromnum(String windowFromnum){ public PhQueueQuery windowFromnum(String windowFromnum){
setWindowFromnum(windowFromnum); setWindowFromnum(windowFromnum);
return this; return this;
} }
/** /**
* 设置 窗口编号 * 设置 窗口编号
* @param windowFromnumList * @param windowFromnumList
*/ */
public PhQueueQuery windowFromnumList(List<String> windowFromnumList){ public PhQueueQuery windowFromnumList(List<String> windowFromnumList){
this.windowFromnumList = windowFromnumList; this.windowFromnumList = windowFromnumList;
return this; return this;
} }
/** /**
* 设置 流水编号,当天的第xxx号 * 设置 流水编号,当天的第xxx号
* @param flownum * @param flownum
*/ */
public PhQueueQuery flownum(String flownum){ public PhQueueQuery flownum(String flownum){
setFlownum(flownum); setFlownum(flownum);
return this; return this;
} }
/** /**
* 设置 流水编号,当天的第xxx号 * 设置 流水编号,当天的第xxx号
* @param flownumList * @param flownumList
*/ */
public PhQueueQuery flownumList(List<String> flownumList){ public PhQueueQuery flownumList(List<String> flownumList){
this.flownumList = flownumList; this.flownumList = flownumList;
return this; return this;
} }
/** /**
* 设置 呼叫转移号 * 设置 呼叫转移号
* @param formernum * @param formernum
*/ */
public PhQueueQuery formernum(String formernum){ public PhQueueQuery formernum(String formernum){
setFormernum(formernum); setFormernum(formernum);
return this; return this;
} }
/** /**
* 设置 呼叫转移号 * 设置 呼叫转移号
* @param formernumList * @param formernumList
*/ */
public PhQueueQuery formernumList(List<String> formernumList){ public PhQueueQuery formernumList(List<String> formernumList){
this.formernumList = formernumList; this.formernumList = formernumList;
return this; return this;
} }
/** /**
* 设置 身份证号 * 设置 身份证号
* @param peopleIdcard * @param peopleIdcard
*/ */
public PhQueueQuery peopleIdcard(String peopleIdcard){ public PhQueueQuery peopleIdcard(String peopleIdcard){
setPeopleIdcard(peopleIdcard); setPeopleIdcard(peopleIdcard);
return this; return this;
} }
/** /**
* 设置 身份证号 * 设置 身份证号
* @param peopleIdcardList * @param peopleIdcardList
*/ */
public PhQueueQuery peopleIdcardList(List<String> peopleIdcardList){ public PhQueueQuery peopleIdcardList(List<String> peopleIdcardList){
this.peopleIdcardList = peopleIdcardList; this.peopleIdcardList = peopleIdcardList;
return this; return this;
} }
/** /**
* 设置 姓名 * 设置 姓名
* @param peopleName * @param peopleName
*/ */
public PhQueueQuery peopleName(String peopleName){ public PhQueueQuery peopleName(String peopleName){
setPeopleName(peopleName); setPeopleName(peopleName);
return this; return this;
} }
/** /**
* 设置 姓名 * 设置 姓名
* @param peopleNameList * @param peopleNameList
*/ */
public PhQueueQuery peopleNameList(List<String> peopleNameList){ public PhQueueQuery peopleNameList(List<String> peopleNameList){
this.peopleNameList = peopleNameList; this.peopleNameList = peopleNameList;
return this; return this;
} }
/** /**
* 设置 性别 * 设置 性别
* @param peopleSex * @param peopleSex
*/ */
public PhQueueQuery peopleSex(String peopleSex){ public PhQueueQuery peopleSex(String peopleSex){
setPeopleSex(peopleSex); setPeopleSex(peopleSex);
return this; return this;
} }
/** /**
* 设置 性别 * 设置 性别
* @param peopleSexList * @param peopleSexList
*/ */
public PhQueueQuery peopleSexList(List<String> peopleSexList){ public PhQueueQuery peopleSexList(List<String> peopleSexList){
this.peopleSexList = peopleSexList; this.peopleSexList = peopleSexList;
return this; return this;
} }
/** /**
* 设置 手机号 * 设置 手机号
* @param peoplePhone * @param peoplePhone
*/ */
public PhQueueQuery peoplePhone(String peoplePhone){ public PhQueueQuery peoplePhone(String peoplePhone){
setPeoplePhone(peoplePhone); setPeoplePhone(peoplePhone);
return this; return this;
} }
/** /**
* 设置 手机号 * 设置 手机号
* @param peoplePhoneList * @param peoplePhoneList
*/ */
public PhQueueQuery peoplePhoneList(List<String> peoplePhoneList){ public PhQueueQuery peoplePhoneList(List<String> peoplePhoneList){
this.peoplePhoneList = peoplePhoneList; this.peoplePhoneList = peoplePhoneList;
return this; return this;
} }
/** /**
* 设置 工作人员姓名 * 设置 工作人员姓名
* @param workmanName * @param workmanName
*/ */
public PhQueueQuery workmanName(String workmanName){ public PhQueueQuery workmanName(String workmanName){
setWorkmanName(workmanName); setWorkmanName(workmanName);
return this; return this;
} }
/** /**
* 设置 工作人员姓名 * 设置 工作人员姓名
* @param workmanNameList * @param workmanNameList
*/ */
public PhQueueQuery workmanNameList(List<String> workmanNameList){ public PhQueueQuery workmanNameList(List<String> workmanNameList){
this.workmanNameList = workmanNameList; this.workmanNameList = workmanNameList;
return this; return this;
} }
/** /**
* 设置 工作人员工号 * 设置 工作人员工号
* @param workmanNumber * @param workmanNumber
*/ */
public PhQueueQuery workmanNumber(String workmanNumber){ public PhQueueQuery workmanNumber(String workmanNumber){
setWorkmanNumber(workmanNumber); setWorkmanNumber(workmanNumber);
return this; return this;
} }
/** /**
* 设置 工作人员工号 * 设置 工作人员工号
* @param workmanNumberList * @param workmanNumberList
*/ */
public PhQueueQuery workmanNumberList(List<String> workmanNumberList){ public PhQueueQuery workmanNumberList(List<String> workmanNumberList){
this.workmanNumberList = workmanNumberList; this.workmanNumberList = workmanNumberList;
return this; return this;
} }
/** /**
* 设置 等待时间,单位s * 设置 等待时间,单位s
* @param waitTime * @param waitTime
*/ */
public PhQueueQuery waitTime(Integer waitTime){ public PhQueueQuery waitTime(Integer waitTime){
setWaitTime(waitTime); setWaitTime(waitTime);
return this; return this;
} }
/** /**
* 设置 开始 等待时间,单位s * 设置 开始 等待时间,单位s
* @param waitTimeStart * @param waitTimeStart
*/ */
public PhQueueQuery waitTimeStart(Integer waitTimeStart){ public PhQueueQuery waitTimeStart(Integer waitTimeStart){
this.waitTimeStart = waitTimeStart; this.waitTimeStart = waitTimeStart;
return this; return this;
} }
/** /**
* 设置 结束 等待时间,单位s * 设置 结束 等待时间,单位s
* @param waitTimeEnd * @param waitTimeEnd
*/ */
public PhQueueQuery waitTimeEnd(Integer waitTimeEnd){ public PhQueueQuery waitTimeEnd(Integer waitTimeEnd){
this.waitTimeEnd = waitTimeEnd; this.waitTimeEnd = waitTimeEnd;
return this; return this;
} }
/** /**
* 设置 增加 等待时间,单位s * 设置 增加 等待时间,单位s
* @param waitTimeIncrement * @param waitTimeIncrement
*/ */
public PhQueueQuery waitTimeIncrement(Integer waitTimeIncrement){ public PhQueueQuery waitTimeIncrement(Integer waitTimeIncrement){
this.waitTimeIncrement = waitTimeIncrement; this.waitTimeIncrement = waitTimeIncrement;
return this; return this;
} }
/** /**
* 设置 等待时间,单位s * 设置 等待时间,单位s
* @param waitTimeList * @param waitTimeList
*/ */
public PhQueueQuery waitTimeList(List<Integer> waitTimeList){ public PhQueueQuery waitTimeList(List<Integer> waitTimeList){
this.waitTimeList = waitTimeList; this.waitTimeList = waitTimeList;
return this; return this;
} }
/** /**
* 设置 等待时间,单位s * 设置 等待时间,单位s
* @param waitTimeNotList * @param waitTimeNotList
*/ */
public PhQueueQuery waitTimeNotList(List<Integer> waitTimeNotList){ public PhQueueQuery waitTimeNotList(List<Integer> waitTimeNotList){
this.waitTimeNotList = waitTimeNotList; this.waitTimeNotList = waitTimeNotList;
return this; return this;
} }
/** /**
* 设置 办理时间,单位s * 设置 办理时间,单位s
* @param handleTime * @param handleTime
*/ */
public PhQueueQuery handleTime(Integer handleTime){ public PhQueueQuery handleTime(Integer handleTime){
setHandleTime(handleTime); setHandleTime(handleTime);
return this; return this;
} }
/** /**
* 设置 开始 办理时间,单位s * 设置 开始 办理时间,单位s
* @param handleTimeStart * @param handleTimeStart
*/ */
public PhQueueQuery handleTimeStart(Integer handleTimeStart){ public PhQueueQuery handleTimeStart(Integer handleTimeStart){
this.handleTimeStart = handleTimeStart; this.handleTimeStart = handleTimeStart;
return this; return this;
} }
/** /**
* 设置 结束 办理时间,单位s * 设置 结束 办理时间,单位s
* @param handleTimeEnd * @param handleTimeEnd
*/ */
public PhQueueQuery handleTimeEnd(Integer handleTimeEnd){ public PhQueueQuery handleTimeEnd(Integer handleTimeEnd){
this.handleTimeEnd = handleTimeEnd; this.handleTimeEnd = handleTimeEnd;
return this; return this;
} }
/** /**
* 设置 增加 办理时间,单位s * 设置 增加 办理时间,单位s
* @param handleTimeIncrement * @param handleTimeIncrement
*/ */
public PhQueueQuery handleTimeIncrement(Integer handleTimeIncrement){ public PhQueueQuery handleTimeIncrement(Integer handleTimeIncrement){
this.handleTimeIncrement = handleTimeIncrement; this.handleTimeIncrement = handleTimeIncrement;
return this; return this;
} }
/** /**
* 设置 办理时间,单位s * 设置 办理时间,单位s
* @param handleTimeList * @param handleTimeList
*/ */
public PhQueueQuery handleTimeList(List<Integer> handleTimeList){ public PhQueueQuery handleTimeList(List<Integer> handleTimeList){
this.handleTimeList = handleTimeList; this.handleTimeList = handleTimeList;
return this; return this;
} }
/** /**
* 设置 办理时间,单位s * 设置 办理时间,单位s
* @param handleTimeNotList * @param handleTimeNotList
*/ */
public PhQueueQuery handleTimeNotList(List<Integer> handleTimeNotList){ public PhQueueQuery handleTimeNotList(List<Integer> handleTimeNotList){
this.handleTimeNotList = handleTimeNotList; this.handleTimeNotList = handleTimeNotList;
return this; return this;
} }
/** /**
* 设置 取号设备名 * 设置 取号设备名
* @param deviceName * @param deviceName
*/ */
public PhQueueQuery deviceName(String deviceName){ public PhQueueQuery deviceName(String deviceName){
setDeviceName(deviceName); setDeviceName(deviceName);
return this; return this;
} }
/** /**
* 设置 取号设备名 * 设置 取号设备名
* @param deviceNameList * @param deviceNameList
*/ */
public PhQueueQuery deviceNameList(List<String> deviceNameList){ public PhQueueQuery deviceNameList(List<String> deviceNameList){
this.deviceNameList = deviceNameList; this.deviceNameList = deviceNameList;
return this; return this;
} }
/** /**
* 设置 呼叫设备 * 设置 呼叫设备
* @param callName * @param callName
*/ */
public PhQueueQuery callName(String callName){ public PhQueueQuery callName(String callName){
setCallName(callName); setCallName(callName);
return this; return this;
} }
/** /**
* 设置 呼叫设备 * 设置 呼叫设备
* @param callNameList * @param callNameList
*/ */
public PhQueueQuery callNameList(List<String> callNameList){ public PhQueueQuery callNameList(List<String> callNameList){
this.callNameList = callNameList; this.callNameList = callNameList;
return this; return this;
} }
/** /**
* 设置 事项名 * 设置 事项名
* @param matterName * @param matterName
*/ */
public PhQueueQuery matterName(String matterName){ public PhQueueQuery matterName(String matterName){
setMatterName(matterName); setMatterName(matterName);
return this; return this;
} }
/** /**
* 设置 事项名 * 设置 事项名
* @param matterNameList * @param matterNameList
*/ */
public PhQueueQuery matterNameList(List<String> matterNameList){ public PhQueueQuery matterNameList(List<String> matterNameList){
this.matterNameList = matterNameList; this.matterNameList = matterNameList;
return this; return this;
} }
/** /**
* 设置 排号队列ID,唯一 * 设置 排号队列ID,唯一
* @param queueid * @param queueid
*/ */
public PhQueueQuery queueid(String queueid){ public PhQueueQuery queueid(String queueid){
setQueueid(queueid); setQueueid(queueid);
return this; return this;
} }
/** /**
* 设置 排号队列ID,唯一 * 设置 排号队列ID,唯一
* @param queueidList * @param queueidList
*/ */
public PhQueueQuery queueidList(List<String> queueidList){ public PhQueueQuery queueidList(List<String> queueidList){
this.queueidList = queueidList; this.queueidList = queueidList;
return this; return this;
} }
/** /**
* 设置 取号方式 (现场取号,微信取号) * 设置 取号方式 (现场取号,微信取号)
* @param wySignin * @param wySignin
*/ */
public PhQueueQuery wySignin(String wySignin){ public PhQueueQuery wySignin(String wySignin){
setWySignin(wySignin); setWySignin(wySignin);
return this; return this;
} }
/** /**
* 设置 取号方式 (现场取号,微信取号) * 设置 取号方式 (现场取号,微信取号)
* @param wySigninList * @param wySigninList
*/ */
public PhQueueQuery wySigninList(List<String> wySigninList){ public PhQueueQuery wySigninList(List<String> wySigninList){
this.wySigninList = wySigninList; this.wySigninList = wySigninList;
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param sectionName * @param sectionName
*/ */
public PhQueueQuery sectionName(String sectionName){ public PhQueueQuery sectionName(String sectionName){
setSectionName(sectionName); setSectionName(sectionName);
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param sectionNameList * @param sectionNameList
*/ */
public PhQueueQuery sectionNameList(List<String> sectionNameList){ public PhQueueQuery sectionNameList(List<String> sectionNameList){
this.sectionNameList = sectionNameList; this.sectionNameList = sectionNameList;
return this; return this;
} }
/** /**
* 设置 大厅名称 * 设置 大厅名称
* @param hallName * @param hallName
*/ */
public PhQueueQuery hallName(String hallName){ public PhQueueQuery hallName(String hallName){
setHallName(hallName); setHallName(hallName);
return this; return this;
} }
/** /**
* 设置 大厅名称 * 设置 大厅名称
* @param hallNameList * @param hallNameList
*/ */
public PhQueueQuery hallNameList(List<String> hallNameList){ public PhQueueQuery hallNameList(List<String> hallNameList){
this.hallNameList = hallNameList; this.hallNameList = hallNameList;
return this; return this;
} }
/** /**
* 设置 取号设备类型 * 设置 取号设备类型
* @param deviceType * @param deviceType
*/ */
public PhQueueQuery deviceType(String deviceType){ public PhQueueQuery deviceType(String deviceType){
setDeviceType(deviceType); setDeviceType(deviceType);
return this; return this;
} }
/** /**
* 设置 取号设备类型 * 设置 取号设备类型
* @param deviceTypeList * @param deviceTypeList
*/ */
public PhQueueQuery deviceTypeList(List<String> deviceTypeList){ public PhQueueQuery deviceTypeList(List<String> deviceTypeList){
this.deviceTypeList = deviceTypeList; this.deviceTypeList = deviceTypeList;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteId * @param siteId
*/ */
public PhQueueQuery siteId(Long siteId){ public PhQueueQuery siteId(Long siteId){
setSiteId(siteId); setSiteId(siteId);
return this; return this;
} }
/** /**
* 设置 开始 站点Id * 设置 开始 站点Id
* @param siteIdStart * @param siteIdStart
*/ */
public PhQueueQuery siteIdStart(Long siteIdStart){ public PhQueueQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
return this; return this;
} }
/** /**
* 设置 结束 站点Id * 设置 结束 站点Id
* @param siteIdEnd * @param siteIdEnd
*/ */
public PhQueueQuery siteIdEnd(Long siteIdEnd){ public PhQueueQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 站点Id * 设置 增加 站点Id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public PhQueueQuery siteIdIncrement(Long siteIdIncrement){ public PhQueueQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdList * @param siteIdList
*/ */
public PhQueueQuery siteIdList(List<Long> siteIdList){ public PhQueueQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; return this;
} }
/** /**
* 设置 站点Id * 设置 站点Id
* @param siteIdNotList * @param siteIdNotList
*/ */
public PhQueueQuery siteIdNotList(List<Long> siteIdNotList){ public PhQueueQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
return this; return this;
} }
/** /**
* 设置 站点编码 * 设置 站点编码
* @param siteCode * @param siteCode
*/ */
public PhQueueQuery siteCode(String siteCode){ public PhQueueQuery siteCode(String siteCode){
setSiteCode(siteCode); setSiteCode(siteCode);
return this; return this;
} }
/** /**
* 设置 站点编码 * 设置 站点编码
* @param siteCodeList * @param siteCodeList
*/ */
public PhQueueQuery siteCodeList(List<String> siteCodeList){ public PhQueueQuery siteCodeList(List<String> siteCodeList){
this.siteCodeList = siteCodeList; this.siteCodeList = siteCodeList;
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteName * @param siteName
*/ */
public PhQueueQuery siteName(String siteName){ public PhQueueQuery siteName(String siteName){
setSiteName(siteName); setSiteName(siteName);
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public PhQueueQuery siteNameList(List<String> siteNameList){ public PhQueueQuery siteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
return this; return this;
} }
/** /**
* 设置 扩展编号 * 设置 扩展编号
* @param extNum * @param extNum
*/ */
public PhQueueQuery extNum(String extNum){ public PhQueueQuery extNum(String extNum){
setExtNum(extNum); setExtNum(extNum);
return this; return this;
} }
/** /**
* 设置 扩展编号 * 设置 扩展编号
* @param extNumList * @param extNumList
*/ */
public PhQueueQuery extNumList(List<String> extNumList){ public PhQueueQuery extNumList(List<String> extNumList){
this.extNumList = extNumList; this.extNumList = extNumList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserId * @param createUserId
*/ */
public PhQueueQuery createUserId(Long createUserId){ public PhQueueQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public PhQueueQuery createUserIdStart(Long createUserIdStart){ public PhQueueQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public PhQueueQuery createUserIdEnd(Long createUserIdEnd){ public PhQueueQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public PhQueueQuery createUserIdIncrement(Long createUserIdIncrement){ public PhQueueQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public PhQueueQuery createUserIdList(List<Long> createUserIdList){ public PhQueueQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public PhQueueQuery createUserIdNotList(List<Long> createUserIdNotList){ public PhQueueQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; 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<PhQueueQuery> getOrConditionList(){ public List<PhQueueQuery> 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<PhQueueQuery> orConditionList){ public void setOrConditionList(List<PhQueueQuery> 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<PhQueueQuery> getAndConditionList(){ public List<PhQueueQuery> 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<PhQueueQuery> andConditionList){ public void setAndConditionList(List<PhQueueQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
package com.mortals.xhx.module.ph.service.impl; package com.mortals.xhx.module.ph.service.impl;
import com.mortals.framework.model.PageInfo;
import com.mortals.xhx.module.app.model.AppInfoFieldEntity;
import com.mortals.xhx.module.app.model.AppInfoFieldQuery;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import com.mortals.framework.service.impl.AbstractCRUDServiceImpl; import com.mortals.framework.service.impl.AbstractCRUDServiceImpl;
import com.mortals.framework.exception.AppException; import com.mortals.framework.exception.AppException;
...@@ -6,16 +10,83 @@ import com.mortals.framework.model.Context; ...@@ -6,16 +10,83 @@ import com.mortals.framework.model.Context;
import com.mortals.xhx.module.ph.dao.PhQueueDao; import com.mortals.xhx.module.ph.dao.PhQueueDao;
import com.mortals.xhx.module.ph.model.PhQueueEntity; import com.mortals.xhx.module.ph.model.PhQueueEntity;
import com.mortals.xhx.module.ph.service.PhQueueService; import com.mortals.xhx.module.ph.service.PhQueueService;
import org.springframework.beans.factory.annotation.Autowired;
import com.mortals.xhx.module.workman.model.WorkmanEntity;
import com.mortals.xhx.module.workman.model.WorkmanQuery;
import com.mortals.xhx.module.workman.service.WorkmanService;
import org.springframework.util.ObjectUtils;
import java.util.Date;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
/** /**
* PhQueueService * PhQueueService
* 排号汇总 service实现 * 排号汇总 service实现
* *
* @author zxfei * @author zxfei
* @date 2024-04-09 * @date 2024-07-18
*/ */
@Service("phQueueService") @Service("phQueueService")
@Slf4j @Slf4j
public class PhQueueServiceImpl extends AbstractCRUDServiceImpl<PhQueueDao, PhQueueEntity, Long> implements PhQueueService { public class PhQueueServiceImpl extends AbstractCRUDServiceImpl<PhQueueDao, PhQueueEntity, Long> implements PhQueueService {
@Autowired
private WorkmanService workmanService;
@Override
protected void findAfter(PhQueueEntity params,PageInfo pageInfo, Context context, List<PhQueueEntity> list) throws AppException {
List<Long> idList = list.stream().map(i -> i.getId()).collect(Collectors.toList());
WorkmanQuery workmanQuery = new WorkmanQuery();
workmanQuery.setCreateUserIdList(idList);
Map<Long, WorkmanEntity> workmanMap = workmanService.find(workmanQuery).stream().collect(Collectors.toMap(WorkmanEntity::getCreateUserId, Function.identity(), (n1, n2) -> n1));
list.forEach(item -> item.setWorkmanEntity(workmanMap.get(item.getId())));
super.findAfter(params,pageInfo, context, list);
}
/**
* @param entity
* @param context
* @param list
* @throws AppException
*/
@Override
protected void findAfter(PhQueueEntity entity, Context context, List<PhQueueEntity> list) throws AppException {
super.findAfter(entity, context, list);
}
@Override
protected void saveAfter(PhQueueEntity entity, Context context) throws AppException {
if(!ObjectUtils.isEmpty(entity.getWorkmanEntity())){
WorkmanEntity workmanEntity = new WorkmanEntity();
workmanEntity.initAttrValue();
WorkmanEntity subEntity=entity.getWorkmanEntity();
BeanUtils.copyProperties(subEntity,workmanEntity);
workmanEntity.setCreateUserId(entity.getId());
workmanEntity.setCreateUserId(this.getContextUserId(context));
workmanEntity.setCreateTime(new Date());
workmanService.save(workmanEntity,context);
}
super.saveAfter(entity, context);
}
@Override
protected void updateAfter(PhQueueEntity entity, Context context) throws AppException {
if(!ObjectUtils.isEmpty(entity.getWorkmanEntity())){
WorkmanEntity subEntity=entity.getWorkmanEntity();
subEntity.setUpdateUserId(this.getContextUserId(context));
subEntity.setUpdateTime(new Date());
workmanService.update(subEntity,context);
}
super.updateAfter(entity, context);
}
@Override
protected void removeAfter(Long[] ids, Context context, int result) throws AppException {
List<WorkmanEntity> workmanlist = workmanService.find(new WorkmanQuery().createUserIdList(Arrays.asList(ids)));
workmanService.removeList(workmanlist,context);
super.removeAfter(ids, context, result);
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment