Commit b417fc52 authored by 廖旭伟's avatar 廖旭伟

增加热门单事项

parent 03295d35
...@@ -146,6 +146,8 @@ public class MatterApplyServiceImpl extends AbstractCRUDServiceImpl<MatterApplyD ...@@ -146,6 +146,8 @@ public class MatterApplyServiceImpl extends AbstractCRUDServiceImpl<MatterApplyD
if(loginName.equals("admin")) { if(loginName.equals("admin")) {
params.setDeptCode(null); params.setDeptCode(null);
} }
}else {
throw new AppException("token无效");
} }
MatterApplyQuery query = new MatterApplyQuery(); MatterApplyQuery query = new MatterApplyQuery();
BeanUtils.copyProperties(params,query); BeanUtils.copyProperties(params,query);
......
package com.mortals.xhx.module.single.model; package com.mortals.xhx.module.single.model;
import java.util.List; import java.util.List;
import java.util.ArrayList; import java.util.ArrayList;
import java.math.BigDecimal;
import cn.hutool.core.date.DateUtil;
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.single.model.vo.SingleMatterVo; import com.mortals.xhx.module.single.model.vo.SingleMatterVo;
import lombok.Data;
/** /**
* 单事项实体对象 * 单事项实体对象
* *
* @author zxfei * @author zxfei
* @date 2023-03-21 * @date 2025-03-25
*/ */
@Data
public class SingleMatterEntity extends SingleMatterVo { public class SingleMatterEntity extends SingleMatterVo {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* 站点id * 站点id
*/ */
private Long siteId; private Long siteId;
/** /**
* 站点名称 * 站点名称
*/ */
private String siteName; private String siteName;
/** /**
* 站点事项id * 站点事项id
*/ */
private Long siteMatterId; private Long siteMatterId;
/** /**
* 基础事项ID * 基础事项ID
*/ */
private Long matterId; private Long matterId;
/** /**
* 事项名称 * 事项名称
*/ */
private String matterName; private String matterName;
/** /**
* 事项编码 * 事项编码
*/ */
private String matterCode; private String matterCode;
/** /**
* 部门ID * 部门ID
*/ */
private Long deptId; private Long deptId;
/** /**
* 部门名称 * 部门名称
*/ */
private String deptName; private String deptName;
/** /**
* 部门编码 * 部门编码
*/ */
private String deptCode; private String deptCode;
/** /**
* 事项来源 * 事项来源
*/ */
private Integer source; private Integer source;
/** /**
* 事项类型 * 事项类型
*/ */
private String eventTypeShow; private String eventTypeShow;
/** /**
* 浏览次数 * 浏览次数
*/ */
private Long viewsCount; private Long viewsCount;
/** /**
* 是否生成本地附件 * 是否生成本地附件
*/ */
private Integer isConvert; private Integer isConvert;
/** /**
* 事项详情链接 * 事项详情链接
*/ */
private String url; private String url;
public SingleMatterEntity(){}
/**
* 获取 站点id
* @return Long
*/
public Long getSiteId(){
return siteId;
}
/**
* 设置 站点id
* @param siteId
*/
public void setSiteId(Long siteId){
this.siteId = siteId;
}
/**
* 获取 站点名称
* @return String
*/
public String getSiteName(){
return siteName;
}
/**
* 设置 站点名称
* @param siteName
*/
public void setSiteName(String siteName){
this.siteName = siteName;
}
/**
* 获取 站点事项id
* @return Long
*/
public Long getSiteMatterId(){
return siteMatterId;
}
/**
* 设置 站点事项id
* @param siteMatterId
*/
public void setSiteMatterId(Long siteMatterId){
this.siteMatterId = siteMatterId;
}
/**
* 获取 基础事项ID
* @return Long
*/
public Long getMatterId(){
return matterId;
}
/**
* 设置 基础事项ID
* @param matterId
*/
public void setMatterId(Long matterId){
this.matterId = matterId;
}
/**
* 获取 事项名称
* @return String
*/
public String getMatterName(){
return matterName;
}
/**
* 设置 事项名称
* @param matterName
*/
public void setMatterName(String matterName){
this.matterName = matterName;
}
/**
* 获取 事项编码
* @return String
*/
public String getMatterCode(){
return matterCode;
}
/**
* 设置 事项编码
* @param matterCode
*/
public void setMatterCode(String matterCode){
this.matterCode = matterCode;
}
/**
* 获取 部门ID
* @return Long
*/
public Long getDeptId(){
return deptId;
}
/**
* 设置 部门ID
* @param deptId
*/
public void setDeptId(Long deptId){
this.deptId = deptId;
}
/**
* 获取 部门名称
* @return String
*/
public String getDeptName(){
return deptName;
}
/**
* 设置 部门名称
* @param deptName
*/
public void setDeptName(String deptName){
this.deptName = deptName;
}
/**
* 获取 部门编码
* @return String
*/
public String getDeptCode(){
return deptCode;
}
/**
* 设置 部门编码
* @param deptCode
*/
public void setDeptCode(String deptCode){
this.deptCode = deptCode;
}
/**
* 获取 事项来源
* @return Integer
*/
public Integer getSource(){
return source;
}
/**
* 设置 事项来源
* @param source
*/
public void setSource(Integer source){
this.source = source;
}
/**
* 获取 事项类型
* @return String
*/
public String getEventTypeShow(){
return eventTypeShow;
}
/**
* 设置 事项类型
* @param eventTypeShow
*/
public void setEventTypeShow(String eventTypeShow){
this.eventTypeShow = eventTypeShow;
}
/**
* 获取 浏览次数
* @return Long
*/
public Long getViewsCount(){
return viewsCount;
}
/**
* 设置 浏览次数
* @param viewsCount
*/
public void setViewsCount(Long viewsCount){
this.viewsCount = viewsCount;
}
/**
* 获取 是否生成本地附件
* @return Integer
*/
public Integer getIsConvert(){
return isConvert;
}
/** /**
* 设置 是否生成本地附件 * 热门事项
* @param isConvert */
*/ private Integer hot;
public void setIsConvert(Integer isConvert){
this.isConvert = isConvert;
}
/**
* 获取 事项详情链接
* @return String
*/
public String getUrl(){
return url;
}
/**
* 设置 事项详情链接
* @param url
*/
public void setUrl(String url){
this.url = url;
}
@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) {
...@@ -286,59 +89,27 @@ public class SingleMatterEntity extends SingleMatterVo { ...@@ -286,59 +89,27 @@ public class SingleMatterEntity extends SingleMatterVo {
if (obj instanceof SingleMatterEntity) { if (obj instanceof SingleMatterEntity) {
SingleMatterEntity tmp = (SingleMatterEntity) obj; SingleMatterEntity tmp = (SingleMatterEntity) obj;
if (this.getId() == tmp.getId()) { if (this.getId() == tmp.getId()) {
return true; return true;
} }
} }
return false; return false;
} }
public String toString(){
StringBuilder sb = new StringBuilder("");
sb.append(",siteId:").append(getSiteId());
sb.append(",siteName:").append(getSiteName());
sb.append(",siteMatterId:").append(getSiteMatterId());
sb.append(",matterId:").append(getMatterId());
sb.append(",matterName:").append(getMatterName());
sb.append(",matterCode:").append(getMatterCode());
sb.append(",deptId:").append(getDeptId());
sb.append(",deptName:").append(getDeptName());
sb.append(",deptCode:").append(getDeptCode());
sb.append(",source:").append(getSource());
sb.append(",eventTypeShow:").append(getEventTypeShow());
sb.append(",viewsCount:").append(getViewsCount());
sb.append(",isConvert:").append(getIsConvert());
sb.append(",url:").append(getUrl());
return sb.toString();
}
public void initAttrValue(){ public void initAttrValue(){
this.siteId = null;
this.siteId = null; this.siteName = "";
this.siteMatterId = null;
this.siteName = ""; this.matterId = null;
this.matterName = "";
this.siteMatterId = null; this.matterCode = "";
this.deptId = null;
this.matterId = null; this.deptName = "";
this.deptCode = "";
this.matterName = ""; this.source = 0;
this.eventTypeShow = "";
this.matterCode = ""; this.viewsCount = 0L;
this.isConvert = 0;
this.deptId = null; this.url = "";
this.hot = 0;
this.deptName = "";
this.deptCode = "";
this.source = null;
this.eventTypeShow = "";
this.viewsCount = 0L;
this.isConvert = 0;
this.url = "";
} }
} }
\ No newline at end of file
...@@ -3,11 +3,11 @@ package com.mortals.xhx.module.single.model; ...@@ -3,11 +3,11 @@ package com.mortals.xhx.module.single.model;
import java.util.List; import java.util.List;
import com.mortals.xhx.module.single.model.SingleMatterEntity; import com.mortals.xhx.module.single.model.SingleMatterEntity;
/** /**
* 单事项查询对象 * 单事项查询对象
* *
* @author zxfei * @author zxfei
* @date 2023-03-21 * @date 2025-03-25
*/ */
public class SingleMatterQuery extends SingleMatterEntity { public class SingleMatterQuery extends SingleMatterEntity {
/** 开始 序号,主键,自增长 */ /** 开始 序号,主键,自增长 */
private Long idStart; private Long idStart;
...@@ -164,6 +164,21 @@ public class SingleMatterQuery extends SingleMatterEntity { ...@@ -164,6 +164,21 @@ public class SingleMatterQuery extends SingleMatterEntity {
/** 事项详情链接排除列表 */ /** 事项详情链接排除列表 */
private List <String> urlNotList; private List <String> urlNotList;
/** 开始 热门事项 */
private Integer hotStart;
/** 结束 热门事项 */
private Integer hotEnd;
/** 增加 热门事项 */
private Integer hotIncrement;
/** 热门事项列表 */
private List <Integer> hotList;
/** 热门事项排除列表 */
private List <Integer> hotNotList;
/** 开始 创建用户 */ /** 开始 创建用户 */
private Long createUserIdStart; private Long createUserIdStart;
...@@ -215,1806 +230,1941 @@ public class SingleMatterQuery extends SingleMatterEntity { ...@@ -215,1806 +230,1941 @@ public class SingleMatterQuery extends SingleMatterEntity {
public SingleMatterQuery(){} public SingleMatterQuery(){}
/** /**
* 获取 开始 序号,主键,自增长 * 获取 开始 序号,主键,自增长
* @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 siteIdStart
*/ */
public Long getSiteIdStart(){ public Long getSiteIdStart(){
return this.siteIdStart; return this.siteIdStart;
} }
/** /**
* 设置 开始 站点id * 设置 开始 站点id
* @param siteIdStart * @param siteIdStart
*/ */
public void setSiteIdStart(Long siteIdStart){ public void setSiteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
} }
/** /**
* 获取 结束 站点id * 获取 结束 站点id
* @return $siteIdEnd * @return $siteIdEnd
*/ */
public Long getSiteIdEnd(){ public Long getSiteIdEnd(){
return this.siteIdEnd; return this.siteIdEnd;
} }
/** /**
* 设置 结束 站点id * 设置 结束 站点id
* @param siteIdEnd * @param siteIdEnd
*/ */
public void setSiteIdEnd(Long siteIdEnd){ public void setSiteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
} }
/** /**
* 获取 增加 站点id * 获取 增加 站点id
* @return siteIdIncrement * @return siteIdIncrement
*/ */
public Long getSiteIdIncrement(){ public Long getSiteIdIncrement(){
return this.siteIdIncrement; return this.siteIdIncrement;
} }
/** /**
* 设置 增加 站点id * 设置 增加 站点id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public void setSiteIdIncrement(Long siteIdIncrement){ public void setSiteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
} }
/** /**
* 获取 站点id * 获取 站点id
* @return siteIdList * @return siteIdList
*/ */
public List<Long> getSiteIdList(){ public List<Long> getSiteIdList(){
return this.siteIdList; return this.siteIdList;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdList * @param siteIdList
*/ */
public void setSiteIdList(List<Long> siteIdList){ public void setSiteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
} }
/** /**
* 获取 站点id * 获取 站点id
* @return siteIdNotList * @return siteIdNotList
*/ */
public List<Long> getSiteIdNotList(){ public List<Long> getSiteIdNotList(){
return this.siteIdNotList; return this.siteIdNotList;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdNotList * @param siteIdNotList
*/ */
public void setSiteIdNotList(List<Long> siteIdNotList){ public void setSiteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameList * @return siteNameList
*/ */
public List<String> getSiteNameList(){ public List<String> getSiteNameList(){
return this.siteNameList; return this.siteNameList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public void setSiteNameList(List<String> siteNameList){ public void setSiteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
} }
/** /**
* 获取 站点名称 * 获取 站点名称
* @return siteNameNotList * @return siteNameNotList
*/ */
public List<String> getSiteNameNotList(){ public List<String> getSiteNameNotList(){
return this.siteNameNotList; return this.siteNameNotList;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameNotList * @param siteNameNotList
*/ */
public void setSiteNameNotList(List<String> siteNameNotList){ public void setSiteNameNotList(List<String> siteNameNotList){
this.siteNameNotList = siteNameNotList; this.siteNameNotList = siteNameNotList;
} }
/** /**
* 获取 开始 站点事项id * 获取 开始 站点事项id
* @return siteMatterIdStart * @return siteMatterIdStart
*/ */
public Long getSiteMatterIdStart(){ public Long getSiteMatterIdStart(){
return this.siteMatterIdStart; return this.siteMatterIdStart;
} }
/** /**
* 设置 开始 站点事项id * 设置 开始 站点事项id
* @param siteMatterIdStart * @param siteMatterIdStart
*/ */
public void setSiteMatterIdStart(Long siteMatterIdStart){ public void setSiteMatterIdStart(Long siteMatterIdStart){
this.siteMatterIdStart = siteMatterIdStart; this.siteMatterIdStart = siteMatterIdStart;
} }
/** /**
* 获取 结束 站点事项id * 获取 结束 站点事项id
* @return $siteMatterIdEnd * @return $siteMatterIdEnd
*/ */
public Long getSiteMatterIdEnd(){ public Long getSiteMatterIdEnd(){
return this.siteMatterIdEnd; return this.siteMatterIdEnd;
} }
/** /**
* 设置 结束 站点事项id * 设置 结束 站点事项id
* @param siteMatterIdEnd * @param siteMatterIdEnd
*/ */
public void setSiteMatterIdEnd(Long siteMatterIdEnd){ public void setSiteMatterIdEnd(Long siteMatterIdEnd){
this.siteMatterIdEnd = siteMatterIdEnd; this.siteMatterIdEnd = siteMatterIdEnd;
} }
/** /**
* 获取 增加 站点事项id * 获取 增加 站点事项id
* @return siteMatterIdIncrement * @return siteMatterIdIncrement
*/ */
public Long getSiteMatterIdIncrement(){ public Long getSiteMatterIdIncrement(){
return this.siteMatterIdIncrement; return this.siteMatterIdIncrement;
} }
/** /**
* 设置 增加 站点事项id * 设置 增加 站点事项id
* @param siteMatterIdIncrement * @param siteMatterIdIncrement
*/ */
public void setSiteMatterIdIncrement(Long siteMatterIdIncrement){ public void setSiteMatterIdIncrement(Long siteMatterIdIncrement){
this.siteMatterIdIncrement = siteMatterIdIncrement; this.siteMatterIdIncrement = siteMatterIdIncrement;
} }
/** /**
* 获取 站点事项id * 获取 站点事项id
* @return siteMatterIdList * @return siteMatterIdList
*/ */
public List<Long> getSiteMatterIdList(){ public List<Long> getSiteMatterIdList(){
return this.siteMatterIdList; return this.siteMatterIdList;
} }
/** /**
* 设置 站点事项id * 设置 站点事项id
* @param siteMatterIdList * @param siteMatterIdList
*/ */
public void setSiteMatterIdList(List<Long> siteMatterIdList){ public void setSiteMatterIdList(List<Long> siteMatterIdList){
this.siteMatterIdList = siteMatterIdList; this.siteMatterIdList = siteMatterIdList;
} }
/** /**
* 获取 站点事项id * 获取 站点事项id
* @return siteMatterIdNotList * @return siteMatterIdNotList
*/ */
public List<Long> getSiteMatterIdNotList(){ public List<Long> getSiteMatterIdNotList(){
return this.siteMatterIdNotList; return this.siteMatterIdNotList;
} }
/** /**
* 设置 站点事项id * 设置 站点事项id
* @param siteMatterIdNotList * @param siteMatterIdNotList
*/ */
public void setSiteMatterIdNotList(List<Long> siteMatterIdNotList){ public void setSiteMatterIdNotList(List<Long> siteMatterIdNotList){
this.siteMatterIdNotList = siteMatterIdNotList; this.siteMatterIdNotList = siteMatterIdNotList;
} }
/** /**
* 获取 开始 基础事项ID * 获取 开始 基础事项ID
* @return matterIdStart * @return matterIdStart
*/ */
public Long getMatterIdStart(){ public Long getMatterIdStart(){
return this.matterIdStart; return this.matterIdStart;
} }
/** /**
* 设置 开始 基础事项ID * 设置 开始 基础事项ID
* @param matterIdStart * @param matterIdStart
*/ */
public void setMatterIdStart(Long matterIdStart){ public void setMatterIdStart(Long matterIdStart){
this.matterIdStart = matterIdStart; this.matterIdStart = matterIdStart;
} }
/** /**
* 获取 结束 基础事项ID * 获取 结束 基础事项ID
* @return $matterIdEnd * @return $matterIdEnd
*/ */
public Long getMatterIdEnd(){ public Long getMatterIdEnd(){
return this.matterIdEnd; return this.matterIdEnd;
} }
/** /**
* 设置 结束 基础事项ID * 设置 结束 基础事项ID
* @param matterIdEnd * @param matterIdEnd
*/ */
public void setMatterIdEnd(Long matterIdEnd){ public void setMatterIdEnd(Long matterIdEnd){
this.matterIdEnd = matterIdEnd; this.matterIdEnd = matterIdEnd;
} }
/** /**
* 获取 增加 基础事项ID * 获取 增加 基础事项ID
* @return matterIdIncrement * @return matterIdIncrement
*/ */
public Long getMatterIdIncrement(){ public Long getMatterIdIncrement(){
return this.matterIdIncrement; return this.matterIdIncrement;
} }
/** /**
* 设置 增加 基础事项ID * 设置 增加 基础事项ID
* @param matterIdIncrement * @param matterIdIncrement
*/ */
public void setMatterIdIncrement(Long matterIdIncrement){ public void setMatterIdIncrement(Long matterIdIncrement){
this.matterIdIncrement = matterIdIncrement; this.matterIdIncrement = matterIdIncrement;
} }
/** /**
* 获取 基础事项ID * 获取 基础事项ID
* @return matterIdList * @return matterIdList
*/ */
public List<Long> getMatterIdList(){ public List<Long> getMatterIdList(){
return this.matterIdList; return this.matterIdList;
} }
/** /**
* 设置 基础事项ID * 设置 基础事项ID
* @param matterIdList * @param matterIdList
*/ */
public void setMatterIdList(List<Long> matterIdList){ public void setMatterIdList(List<Long> matterIdList){
this.matterIdList = matterIdList; this.matterIdList = matterIdList;
} }
/** /**
* 获取 基础事项ID * 获取 基础事项ID
* @return matterIdNotList * @return matterIdNotList
*/ */
public List<Long> getMatterIdNotList(){ public List<Long> getMatterIdNotList(){
return this.matterIdNotList; return this.matterIdNotList;
} }
/** /**
* 设置 基础事项ID * 设置 基础事项ID
* @param matterIdNotList * @param matterIdNotList
*/ */
public void setMatterIdNotList(List<Long> matterIdNotList){ public void setMatterIdNotList(List<Long> matterIdNotList){
this.matterIdNotList = matterIdNotList; this.matterIdNotList = matterIdNotList;
} }
/** /**
* 获取 事项名称 * 获取 事项名称
* @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;
} }
/** /**
* 获取 事项编码 * 获取 事项编码
* @return matterCodeList * @return matterCodeList
*/ */
public List<String> getMatterCodeList(){ public List<String> getMatterCodeList(){
return this.matterCodeList; return this.matterCodeList;
} }
/** /**
* 设置 事项编码 * 设置 事项编码
* @param matterCodeList * @param matterCodeList
*/ */
public void setMatterCodeList(List<String> matterCodeList){ public void setMatterCodeList(List<String> matterCodeList){
this.matterCodeList = matterCodeList; this.matterCodeList = matterCodeList;
} }
/** /**
* 获取 事项编码 * 获取 事项编码
* @return matterCodeNotList * @return matterCodeNotList
*/ */
public List<String> getMatterCodeNotList(){ public List<String> getMatterCodeNotList(){
return this.matterCodeNotList; return this.matterCodeNotList;
} }
/** /**
* 设置 事项编码 * 设置 事项编码
* @param matterCodeNotList * @param matterCodeNotList
*/ */
public void setMatterCodeNotList(List<String> matterCodeNotList){ public void setMatterCodeNotList(List<String> matterCodeNotList){
this.matterCodeNotList = matterCodeNotList; this.matterCodeNotList = matterCodeNotList;
} }
/** /**
* 获取 开始 部门ID * 获取 开始 部门ID
* @return deptIdStart * @return deptIdStart
*/ */
public Long getDeptIdStart(){ public Long getDeptIdStart(){
return this.deptIdStart; return this.deptIdStart;
} }
/** /**
* 设置 开始 部门ID * 设置 开始 部门ID
* @param deptIdStart * @param deptIdStart
*/ */
public void setDeptIdStart(Long deptIdStart){ public void setDeptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart; this.deptIdStart = deptIdStart;
} }
/** /**
* 获取 结束 部门ID * 获取 结束 部门ID
* @return $deptIdEnd * @return $deptIdEnd
*/ */
public Long getDeptIdEnd(){ public Long getDeptIdEnd(){
return this.deptIdEnd; return this.deptIdEnd;
} }
/** /**
* 设置 结束 部门ID * 设置 结束 部门ID
* @param deptIdEnd * @param deptIdEnd
*/ */
public void setDeptIdEnd(Long deptIdEnd){ public void setDeptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd; this.deptIdEnd = deptIdEnd;
} }
/** /**
* 获取 增加 部门ID * 获取 增加 部门ID
* @return deptIdIncrement * @return deptIdIncrement
*/ */
public Long getDeptIdIncrement(){ public Long getDeptIdIncrement(){
return this.deptIdIncrement; return this.deptIdIncrement;
} }
/** /**
* 设置 增加 部门ID * 设置 增加 部门ID
* @param deptIdIncrement * @param deptIdIncrement
*/ */
public void setDeptIdIncrement(Long deptIdIncrement){ public void setDeptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement; this.deptIdIncrement = deptIdIncrement;
} }
/** /**
* 获取 部门ID * 获取 部门ID
* @return deptIdList * @return deptIdList
*/ */
public List<Long> getDeptIdList(){ public List<Long> getDeptIdList(){
return this.deptIdList; return this.deptIdList;
} }
/** /**
* 设置 部门ID * 设置 部门ID
* @param deptIdList * @param deptIdList
*/ */
public void setDeptIdList(List<Long> deptIdList){ public void setDeptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList; this.deptIdList = deptIdList;
} }
/** /**
* 获取 部门ID * 获取 部门ID
* @return deptIdNotList * @return deptIdNotList
*/ */
public List<Long> getDeptIdNotList(){ public List<Long> getDeptIdNotList(){
return this.deptIdNotList; return this.deptIdNotList;
} }
/** /**
* 设置 部门ID * 设置 部门ID
* @param deptIdNotList * @param deptIdNotList
*/ */
public void setDeptIdNotList(List<Long> deptIdNotList){ public void setDeptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList; this.deptIdNotList = deptIdNotList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return deptNameList * @return deptNameList
*/ */
public List<String> getDeptNameList(){ public List<String> getDeptNameList(){
return this.deptNameList; return this.deptNameList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameList * @param deptNameList
*/ */
public void setDeptNameList(List<String> deptNameList){ public void setDeptNameList(List<String> deptNameList){
this.deptNameList = deptNameList; this.deptNameList = deptNameList;
} }
/** /**
* 获取 部门名称 * 获取 部门名称
* @return deptNameNotList * @return deptNameNotList
*/ */
public List<String> getDeptNameNotList(){ public List<String> getDeptNameNotList(){
return this.deptNameNotList; return this.deptNameNotList;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameNotList * @param deptNameNotList
*/ */
public void setDeptNameNotList(List<String> deptNameNotList){ public void setDeptNameNotList(List<String> deptNameNotList){
this.deptNameNotList = deptNameNotList; this.deptNameNotList = deptNameNotList;
} }
/** /**
* 获取 部门编码 * 获取 部门编码
* @return deptCodeList * @return deptCodeList
*/ */
public List<String> getDeptCodeList(){ public List<String> getDeptCodeList(){
return this.deptCodeList; return this.deptCodeList;
} }
/** /**
* 设置 部门编码 * 设置 部门编码
* @param deptCodeList * @param deptCodeList
*/ */
public void setDeptCodeList(List<String> deptCodeList){ public void setDeptCodeList(List<String> deptCodeList){
this.deptCodeList = deptCodeList; this.deptCodeList = deptCodeList;
} }
/** /**
* 获取 部门编码 * 获取 部门编码
* @return deptCodeNotList * @return deptCodeNotList
*/ */
public List<String> getDeptCodeNotList(){ public List<String> getDeptCodeNotList(){
return this.deptCodeNotList; return this.deptCodeNotList;
} }
/** /**
* 设置 部门编码 * 设置 部门编码
* @param deptCodeNotList * @param deptCodeNotList
*/ */
public void setDeptCodeNotList(List<String> deptCodeNotList){ public void setDeptCodeNotList(List<String> deptCodeNotList){
this.deptCodeNotList = deptCodeNotList; this.deptCodeNotList = deptCodeNotList;
} }
/** /**
* 获取 开始 事项来源 * 获取 开始 事项来源
* @return sourceStart * @return sourceStart
*/ */
public Integer getSourceStart(){ public Integer getSourceStart(){
return this.sourceStart; return this.sourceStart;
} }
/** /**
* 设置 开始 事项来源 * 设置 开始 事项来源
* @param sourceStart * @param sourceStart
*/ */
public void setSourceStart(Integer sourceStart){ public void setSourceStart(Integer sourceStart){
this.sourceStart = sourceStart; this.sourceStart = sourceStart;
} }
/** /**
* 获取 结束 事项来源 * 获取 结束 事项来源
* @return $sourceEnd * @return $sourceEnd
*/ */
public Integer getSourceEnd(){ public Integer getSourceEnd(){
return this.sourceEnd; return this.sourceEnd;
} }
/** /**
* 设置 结束 事项来源 * 设置 结束 事项来源
* @param sourceEnd * @param sourceEnd
*/ */
public void setSourceEnd(Integer sourceEnd){ public void setSourceEnd(Integer sourceEnd){
this.sourceEnd = sourceEnd; this.sourceEnd = sourceEnd;
} }
/** /**
* 获取 增加 事项来源 * 获取 增加 事项来源
* @return sourceIncrement * @return sourceIncrement
*/ */
public Integer getSourceIncrement(){ public Integer getSourceIncrement(){
return this.sourceIncrement; return this.sourceIncrement;
} }
/** /**
* 设置 增加 事项来源 * 设置 增加 事项来源
* @param sourceIncrement * @param sourceIncrement
*/ */
public void setSourceIncrement(Integer sourceIncrement){ public void setSourceIncrement(Integer sourceIncrement){
this.sourceIncrement = sourceIncrement; this.sourceIncrement = sourceIncrement;
} }
/** /**
* 获取 事项来源 * 获取 事项来源
* @return sourceList * @return sourceList
*/ */
public List<Integer> getSourceList(){ public List<Integer> getSourceList(){
return this.sourceList; return this.sourceList;
} }
/** /**
* 设置 事项来源 * 设置 事项来源
* @param sourceList * @param sourceList
*/ */
public void setSourceList(List<Integer> sourceList){ public void setSourceList(List<Integer> sourceList){
this.sourceList = sourceList; this.sourceList = sourceList;
} }
/** /**
* 获取 事项来源 * 获取 事项来源
* @return sourceNotList * @return sourceNotList
*/ */
public List<Integer> getSourceNotList(){ public List<Integer> getSourceNotList(){
return this.sourceNotList; return this.sourceNotList;
} }
/** /**
* 设置 事项来源 * 设置 事项来源
* @param sourceNotList * @param sourceNotList
*/ */
public void setSourceNotList(List<Integer> sourceNotList){ public void setSourceNotList(List<Integer> sourceNotList){
this.sourceNotList = sourceNotList; this.sourceNotList = sourceNotList;
} }
/** /**
* 获取 事项类型 * 获取 事项类型
* @return eventTypeShowList * @return eventTypeShowList
*/ */
public List<String> getEventTypeShowList(){ public List<String> getEventTypeShowList(){
return this.eventTypeShowList; return this.eventTypeShowList;
} }
/** /**
* 设置 事项类型 * 设置 事项类型
* @param eventTypeShowList * @param eventTypeShowList
*/ */
public void setEventTypeShowList(List<String> eventTypeShowList){ public void setEventTypeShowList(List<String> eventTypeShowList){
this.eventTypeShowList = eventTypeShowList; this.eventTypeShowList = eventTypeShowList;
} }
/** /**
* 获取 事项类型 * 获取 事项类型
* @return eventTypeShowNotList * @return eventTypeShowNotList
*/ */
public List<String> getEventTypeShowNotList(){ public List<String> getEventTypeShowNotList(){
return this.eventTypeShowNotList; return this.eventTypeShowNotList;
} }
/** /**
* 设置 事项类型 * 设置 事项类型
* @param eventTypeShowNotList * @param eventTypeShowNotList
*/ */
public void setEventTypeShowNotList(List<String> eventTypeShowNotList){ public void setEventTypeShowNotList(List<String> eventTypeShowNotList){
this.eventTypeShowNotList = eventTypeShowNotList; this.eventTypeShowNotList = eventTypeShowNotList;
} }
/** /**
* 获取 开始 浏览次数 * 获取 开始 浏览次数
* @return viewsCountStart * @return viewsCountStart
*/ */
public Long getViewsCountStart(){ public Long getViewsCountStart(){
return this.viewsCountStart; return this.viewsCountStart;
} }
/** /**
* 设置 开始 浏览次数 * 设置 开始 浏览次数
* @param viewsCountStart * @param viewsCountStart
*/ */
public void setViewsCountStart(Long viewsCountStart){ public void setViewsCountStart(Long viewsCountStart){
this.viewsCountStart = viewsCountStart; this.viewsCountStart = viewsCountStart;
} }
/** /**
* 获取 结束 浏览次数 * 获取 结束 浏览次数
* @return $viewsCountEnd * @return $viewsCountEnd
*/ */
public Long getViewsCountEnd(){ public Long getViewsCountEnd(){
return this.viewsCountEnd; return this.viewsCountEnd;
} }
/** /**
* 设置 结束 浏览次数 * 设置 结束 浏览次数
* @param viewsCountEnd * @param viewsCountEnd
*/ */
public void setViewsCountEnd(Long viewsCountEnd){ public void setViewsCountEnd(Long viewsCountEnd){
this.viewsCountEnd = viewsCountEnd; this.viewsCountEnd = viewsCountEnd;
} }
/** /**
* 获取 增加 浏览次数 * 获取 增加 浏览次数
* @return viewsCountIncrement * @return viewsCountIncrement
*/ */
public Long getViewsCountIncrement(){ public Long getViewsCountIncrement(){
return this.viewsCountIncrement; return this.viewsCountIncrement;
} }
/** /**
* 设置 增加 浏览次数 * 设置 增加 浏览次数
* @param viewsCountIncrement * @param viewsCountIncrement
*/ */
public void setViewsCountIncrement(Long viewsCountIncrement){ public void setViewsCountIncrement(Long viewsCountIncrement){
this.viewsCountIncrement = viewsCountIncrement; this.viewsCountIncrement = viewsCountIncrement;
} }
/** /**
* 获取 浏览次数 * 获取 浏览次数
* @return viewsCountList * @return viewsCountList
*/ */
public List<Long> getViewsCountList(){ public List<Long> getViewsCountList(){
return this.viewsCountList; return this.viewsCountList;
} }
/** /**
* 设置 浏览次数 * 设置 浏览次数
* @param viewsCountList * @param viewsCountList
*/ */
public void setViewsCountList(List<Long> viewsCountList){ public void setViewsCountList(List<Long> viewsCountList){
this.viewsCountList = viewsCountList; this.viewsCountList = viewsCountList;
} }
/** /**
* 获取 浏览次数 * 获取 浏览次数
* @return viewsCountNotList * @return viewsCountNotList
*/ */
public List<Long> getViewsCountNotList(){ public List<Long> getViewsCountNotList(){
return this.viewsCountNotList; return this.viewsCountNotList;
} }
/** /**
* 设置 浏览次数 * 设置 浏览次数
* @param viewsCountNotList * @param viewsCountNotList
*/ */
public void setViewsCountNotList(List<Long> viewsCountNotList){ public void setViewsCountNotList(List<Long> viewsCountNotList){
this.viewsCountNotList = viewsCountNotList; this.viewsCountNotList = viewsCountNotList;
} }
/** /**
* 获取 开始 是否生成本地附件 * 获取 开始 是否生成本地附件
* @return isConvertStart * @return isConvertStart
*/ */
public Integer getIsConvertStart(){ public Integer getIsConvertStart(){
return this.isConvertStart; return this.isConvertStart;
} }
/** /**
* 设置 开始 是否生成本地附件 * 设置 开始 是否生成本地附件
* @param isConvertStart * @param isConvertStart
*/ */
public void setIsConvertStart(Integer isConvertStart){ public void setIsConvertStart(Integer isConvertStart){
this.isConvertStart = isConvertStart; this.isConvertStart = isConvertStart;
} }
/** /**
* 获取 结束 是否生成本地附件 * 获取 结束 是否生成本地附件
* @return $isConvertEnd * @return $isConvertEnd
*/ */
public Integer getIsConvertEnd(){ public Integer getIsConvertEnd(){
return this.isConvertEnd; return this.isConvertEnd;
} }
/** /**
* 设置 结束 是否生成本地附件 * 设置 结束 是否生成本地附件
* @param isConvertEnd * @param isConvertEnd
*/ */
public void setIsConvertEnd(Integer isConvertEnd){ public void setIsConvertEnd(Integer isConvertEnd){
this.isConvertEnd = isConvertEnd; this.isConvertEnd = isConvertEnd;
} }
/** /**
* 获取 增加 是否生成本地附件 * 获取 增加 是否生成本地附件
* @return isConvertIncrement * @return isConvertIncrement
*/ */
public Integer getIsConvertIncrement(){ public Integer getIsConvertIncrement(){
return this.isConvertIncrement; return this.isConvertIncrement;
} }
/** /**
* 设置 增加 是否生成本地附件 * 设置 增加 是否生成本地附件
* @param isConvertIncrement * @param isConvertIncrement
*/ */
public void setIsConvertIncrement(Integer isConvertIncrement){ public void setIsConvertIncrement(Integer isConvertIncrement){
this.isConvertIncrement = isConvertIncrement; this.isConvertIncrement = isConvertIncrement;
} }
/** /**
* 获取 是否生成本地附件 * 获取 是否生成本地附件
* @return isConvertList * @return isConvertList
*/ */
public List<Integer> getIsConvertList(){ public List<Integer> getIsConvertList(){
return this.isConvertList; return this.isConvertList;
} }
/** /**
* 设置 是否生成本地附件 * 设置 是否生成本地附件
* @param isConvertList * @param isConvertList
*/ */
public void setIsConvertList(List<Integer> isConvertList){ public void setIsConvertList(List<Integer> isConvertList){
this.isConvertList = isConvertList; this.isConvertList = isConvertList;
} }
/** /**
* 获取 是否生成本地附件 * 获取 是否生成本地附件
* @return isConvertNotList * @return isConvertNotList
*/ */
public List<Integer> getIsConvertNotList(){ public List<Integer> getIsConvertNotList(){
return this.isConvertNotList; return this.isConvertNotList;
} }
/** /**
* 设置 是否生成本地附件 * 设置 是否生成本地附件
* @param isConvertNotList * @param isConvertNotList
*/ */
public void setIsConvertNotList(List<Integer> isConvertNotList){ public void setIsConvertNotList(List<Integer> isConvertNotList){
this.isConvertNotList = isConvertNotList; this.isConvertNotList = isConvertNotList;
} }
/** /**
* 获取 事项详情链接 * 获取 事项详情链接
* @return urlList * @return urlList
*/ */
public List<String> getUrlList(){ public List<String> getUrlList(){
return this.urlList; return this.urlList;
} }
/** /**
* 设置 事项详情链接 * 设置 事项详情链接
* @param urlList * @param urlList
*/ */
public void setUrlList(List<String> urlList){ public void setUrlList(List<String> urlList){
this.urlList = urlList; this.urlList = urlList;
} }
/** /**
* 获取 事项详情链接 * 获取 事项详情链接
* @return urlNotList * @return urlNotList
*/ */
public List<String> getUrlNotList(){ public List<String> getUrlNotList(){
return this.urlNotList; return this.urlNotList;
} }
/** /**
* 设置 事项详情链接 * 设置 事项详情链接
* @param urlNotList * @param urlNotList
*/ */
public void setUrlNotList(List<String> urlNotList){ public void setUrlNotList(List<String> urlNotList){
this.urlNotList = urlNotList; this.urlNotList = urlNotList;
} }
/** /**
* 获取 开始 创建用户 * 获取 开始 热门事项
* @return createUserIdStart * @return hotStart
*/ */
public Integer getHotStart(){
return this.hotStart;
}
/**
* 设置 开始 热门事项
* @param hotStart
*/
public void setHotStart(Integer hotStart){
this.hotStart = hotStart;
}
/**
* 获取 结束 热门事项
* @return $hotEnd
*/
public Integer getHotEnd(){
return this.hotEnd;
}
/**
* 设置 结束 热门事项
* @param hotEnd
*/
public void setHotEnd(Integer hotEnd){
this.hotEnd = hotEnd;
}
/**
* 获取 增加 热门事项
* @return hotIncrement
*/
public Integer getHotIncrement(){
return this.hotIncrement;
}
/**
* 设置 增加 热门事项
* @param hotIncrement
*/
public void setHotIncrement(Integer hotIncrement){
this.hotIncrement = hotIncrement;
}
/**
* 获取 热门事项
* @return hotList
*/
public List<Integer> getHotList(){
return this.hotList;
}
/**
* 设置 热门事项
* @param hotList
*/
public void setHotList(List<Integer> hotList){
this.hotList = hotList;
}
/**
* 获取 热门事项
* @return hotNotList
*/
public List<Integer> getHotNotList(){
return this.hotNotList;
}
/**
* 设置 热门事项
* @param hotNotList
*/
public void setHotNotList(List<Integer> hotNotList){
this.hotNotList = hotNotList;
}
/**
* 获取 开始 创建用户
* @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;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param id * @param id
*/ */
public SingleMatterQuery id(Long id){ public SingleMatterQuery id(Long id){
setId(id); setId(id);
return this; return this;
} }
/** /**
* 设置 开始 序号,主键,自增长 * 设置 开始 序号,主键,自增长
* @param idStart * @param idStart
*/ */
public SingleMatterQuery idStart(Long idStart){ public SingleMatterQuery idStart(Long idStart){
this.idStart = idStart; this.idStart = idStart;
return this; return this;
} }
/** /**
* 设置 结束 序号,主键,自增长 * 设置 结束 序号,主键,自增长
* @param idEnd * @param idEnd
*/ */
public SingleMatterQuery idEnd(Long idEnd){ public SingleMatterQuery idEnd(Long idEnd){
this.idEnd = idEnd; this.idEnd = idEnd;
return this; return this;
} }
/** /**
* 设置 增加 序号,主键,自增长 * 设置 增加 序号,主键,自增长
* @param idIncrement * @param idIncrement
*/ */
public SingleMatterQuery idIncrement(Long idIncrement){ public SingleMatterQuery idIncrement(Long idIncrement){
this.idIncrement = idIncrement; this.idIncrement = idIncrement;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idList * @param idList
*/ */
public SingleMatterQuery idList(List<Long> idList){ public SingleMatterQuery idList(List<Long> idList){
this.idList = idList; this.idList = idList;
return this; return this;
} }
/** /**
* 设置 序号,主键,自增长 * 设置 序号,主键,自增长
* @param idNotList * @param idNotList
*/ */
public SingleMatterQuery idNotList(List<Long> idNotList){ public SingleMatterQuery idNotList(List<Long> idNotList){
this.idNotList = idNotList; this.idNotList = idNotList;
return this; return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteId * @param siteId
*/ */
public SingleMatterQuery siteId(Long siteId){ public SingleMatterQuery siteId(Long siteId){
setSiteId(siteId); setSiteId(siteId);
return this; return this;
} }
/** /**
* 设置 开始 站点id * 设置 开始 站点id
* @param siteIdStart * @param siteIdStart
*/ */
public SingleMatterQuery siteIdStart(Long siteIdStart){ public SingleMatterQuery siteIdStart(Long siteIdStart){
this.siteIdStart = siteIdStart; this.siteIdStart = siteIdStart;
return this; return this;
} }
/** /**
* 设置 结束 站点id * 设置 结束 站点id
* @param siteIdEnd * @param siteIdEnd
*/ */
public SingleMatterQuery siteIdEnd(Long siteIdEnd){ public SingleMatterQuery siteIdEnd(Long siteIdEnd){
this.siteIdEnd = siteIdEnd; this.siteIdEnd = siteIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 站点id * 设置 增加 站点id
* @param siteIdIncrement * @param siteIdIncrement
*/ */
public SingleMatterQuery siteIdIncrement(Long siteIdIncrement){ public SingleMatterQuery siteIdIncrement(Long siteIdIncrement){
this.siteIdIncrement = siteIdIncrement; this.siteIdIncrement = siteIdIncrement;
return this; return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdList * @param siteIdList
*/ */
public SingleMatterQuery siteIdList(List<Long> siteIdList){ public SingleMatterQuery siteIdList(List<Long> siteIdList){
this.siteIdList = siteIdList; this.siteIdList = siteIdList;
return this; return this;
} }
/** /**
* 设置 站点id * 设置 站点id
* @param siteIdNotList * @param siteIdNotList
*/ */
public SingleMatterQuery siteIdNotList(List<Long> siteIdNotList){ public SingleMatterQuery siteIdNotList(List<Long> siteIdNotList){
this.siteIdNotList = siteIdNotList; this.siteIdNotList = siteIdNotList;
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteName * @param siteName
*/ */
public SingleMatterQuery siteName(String siteName){ public SingleMatterQuery siteName(String siteName){
setSiteName(siteName); setSiteName(siteName);
return this; return this;
} }
/** /**
* 设置 站点名称 * 设置 站点名称
* @param siteNameList * @param siteNameList
*/ */
public SingleMatterQuery siteNameList(List<String> siteNameList){ public SingleMatterQuery siteNameList(List<String> siteNameList){
this.siteNameList = siteNameList; this.siteNameList = siteNameList;
return this; return this;
} }
/** /**
* 设置 站点事项id * 设置 站点事项id
* @param siteMatterId * @param siteMatterId
*/ */
public SingleMatterQuery siteMatterId(Long siteMatterId){ public SingleMatterQuery siteMatterId(Long siteMatterId){
setSiteMatterId(siteMatterId); setSiteMatterId(siteMatterId);
return this; return this;
} }
/** /**
* 设置 开始 站点事项id * 设置 开始 站点事项id
* @param siteMatterIdStart * @param siteMatterIdStart
*/ */
public SingleMatterQuery siteMatterIdStart(Long siteMatterIdStart){ public SingleMatterQuery siteMatterIdStart(Long siteMatterIdStart){
this.siteMatterIdStart = siteMatterIdStart; this.siteMatterIdStart = siteMatterIdStart;
return this; return this;
} }
/** /**
* 设置 结束 站点事项id * 设置 结束 站点事项id
* @param siteMatterIdEnd * @param siteMatterIdEnd
*/ */
public SingleMatterQuery siteMatterIdEnd(Long siteMatterIdEnd){ public SingleMatterQuery siteMatterIdEnd(Long siteMatterIdEnd){
this.siteMatterIdEnd = siteMatterIdEnd; this.siteMatterIdEnd = siteMatterIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 站点事项id * 设置 增加 站点事项id
* @param siteMatterIdIncrement * @param siteMatterIdIncrement
*/ */
public SingleMatterQuery siteMatterIdIncrement(Long siteMatterIdIncrement){ public SingleMatterQuery siteMatterIdIncrement(Long siteMatterIdIncrement){
this.siteMatterIdIncrement = siteMatterIdIncrement; this.siteMatterIdIncrement = siteMatterIdIncrement;
return this; return this;
} }
/** /**
* 设置 站点事项id * 设置 站点事项id
* @param siteMatterIdList * @param siteMatterIdList
*/ */
public SingleMatterQuery siteMatterIdList(List<Long> siteMatterIdList){ public SingleMatterQuery siteMatterIdList(List<Long> siteMatterIdList){
this.siteMatterIdList = siteMatterIdList; this.siteMatterIdList = siteMatterIdList;
return this; return this;
} }
/** /**
* 设置 站点事项id * 设置 站点事项id
* @param siteMatterIdNotList * @param siteMatterIdNotList
*/ */
public SingleMatterQuery siteMatterIdNotList(List<Long> siteMatterIdNotList){ public SingleMatterQuery siteMatterIdNotList(List<Long> siteMatterIdNotList){
this.siteMatterIdNotList = siteMatterIdNotList; this.siteMatterIdNotList = siteMatterIdNotList;
return this; return this;
} }
/** /**
* 设置 基础事项ID * 设置 基础事项ID
* @param matterId * @param matterId
*/ */
public SingleMatterQuery matterId(Long matterId){ public SingleMatterQuery matterId(Long matterId){
setMatterId(matterId); setMatterId(matterId);
return this; return this;
} }
/** /**
* 设置 开始 基础事项ID * 设置 开始 基础事项ID
* @param matterIdStart * @param matterIdStart
*/ */
public SingleMatterQuery matterIdStart(Long matterIdStart){ public SingleMatterQuery matterIdStart(Long matterIdStart){
this.matterIdStart = matterIdStart; this.matterIdStart = matterIdStart;
return this; return this;
} }
/** /**
* 设置 结束 基础事项ID * 设置 结束 基础事项ID
* @param matterIdEnd * @param matterIdEnd
*/ */
public SingleMatterQuery matterIdEnd(Long matterIdEnd){ public SingleMatterQuery matterIdEnd(Long matterIdEnd){
this.matterIdEnd = matterIdEnd; this.matterIdEnd = matterIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 基础事项ID * 设置 增加 基础事项ID
* @param matterIdIncrement * @param matterIdIncrement
*/ */
public SingleMatterQuery matterIdIncrement(Long matterIdIncrement){ public SingleMatterQuery matterIdIncrement(Long matterIdIncrement){
this.matterIdIncrement = matterIdIncrement; this.matterIdIncrement = matterIdIncrement;
return this; return this;
} }
/** /**
* 设置 基础事项ID * 设置 基础事项ID
* @param matterIdList * @param matterIdList
*/ */
public SingleMatterQuery matterIdList(List<Long> matterIdList){ public SingleMatterQuery matterIdList(List<Long> matterIdList){
this.matterIdList = matterIdList; this.matterIdList = matterIdList;
return this; return this;
} }
/** /**
* 设置 基础事项ID * 设置 基础事项ID
* @param matterIdNotList * @param matterIdNotList
*/ */
public SingleMatterQuery matterIdNotList(List<Long> matterIdNotList){ public SingleMatterQuery matterIdNotList(List<Long> matterIdNotList){
this.matterIdNotList = matterIdNotList; this.matterIdNotList = matterIdNotList;
return this; return this;
} }
/** /**
* 设置 事项名称 * 设置 事项名称
* @param matterName * @param matterName
*/ */
public SingleMatterQuery matterName(String matterName){ public SingleMatterQuery matterName(String matterName){
setMatterName(matterName); setMatterName(matterName);
return this; return this;
} }
/** /**
* 设置 事项名称 * 设置 事项名称
* @param matterNameList * @param matterNameList
*/ */
public SingleMatterQuery matterNameList(List<String> matterNameList){ public SingleMatterQuery matterNameList(List<String> matterNameList){
this.matterNameList = matterNameList; this.matterNameList = matterNameList;
return this; return this;
} }
/** /**
* 设置 事项编码 * 设置 事项编码
* @param matterCode * @param matterCode
*/ */
public SingleMatterQuery matterCode(String matterCode){ public SingleMatterQuery matterCode(String matterCode){
setMatterCode(matterCode); setMatterCode(matterCode);
return this; return this;
} }
/** /**
* 设置 事项编码 * 设置 事项编码
* @param matterCodeList * @param matterCodeList
*/ */
public SingleMatterQuery matterCodeList(List<String> matterCodeList){ public SingleMatterQuery matterCodeList(List<String> matterCodeList){
this.matterCodeList = matterCodeList; this.matterCodeList = matterCodeList;
return this; return this;
} }
/** /**
* 设置 部门ID * 设置 部门ID
* @param deptId * @param deptId
*/ */
public SingleMatterQuery deptId(Long deptId){ public SingleMatterQuery deptId(Long deptId){
setDeptId(deptId); setDeptId(deptId);
return this; return this;
} }
/** /**
* 设置 开始 部门ID * 设置 开始 部门ID
* @param deptIdStart * @param deptIdStart
*/ */
public SingleMatterQuery deptIdStart(Long deptIdStart){ public SingleMatterQuery deptIdStart(Long deptIdStart){
this.deptIdStart = deptIdStart; this.deptIdStart = deptIdStart;
return this; return this;
} }
/** /**
* 设置 结束 部门ID * 设置 结束 部门ID
* @param deptIdEnd * @param deptIdEnd
*/ */
public SingleMatterQuery deptIdEnd(Long deptIdEnd){ public SingleMatterQuery deptIdEnd(Long deptIdEnd){
this.deptIdEnd = deptIdEnd; this.deptIdEnd = deptIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 部门ID * 设置 增加 部门ID
* @param deptIdIncrement * @param deptIdIncrement
*/ */
public SingleMatterQuery deptIdIncrement(Long deptIdIncrement){ public SingleMatterQuery deptIdIncrement(Long deptIdIncrement){
this.deptIdIncrement = deptIdIncrement; this.deptIdIncrement = deptIdIncrement;
return this; return this;
} }
/** /**
* 设置 部门ID * 设置 部门ID
* @param deptIdList * @param deptIdList
*/ */
public SingleMatterQuery deptIdList(List<Long> deptIdList){ public SingleMatterQuery deptIdList(List<Long> deptIdList){
this.deptIdList = deptIdList; this.deptIdList = deptIdList;
return this; return this;
} }
/** /**
* 设置 部门ID * 设置 部门ID
* @param deptIdNotList * @param deptIdNotList
*/ */
public SingleMatterQuery deptIdNotList(List<Long> deptIdNotList){ public SingleMatterQuery deptIdNotList(List<Long> deptIdNotList){
this.deptIdNotList = deptIdNotList; this.deptIdNotList = deptIdNotList;
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptName * @param deptName
*/ */
public SingleMatterQuery deptName(String deptName){ public SingleMatterQuery deptName(String deptName){
setDeptName(deptName); setDeptName(deptName);
return this; return this;
} }
/** /**
* 设置 部门名称 * 设置 部门名称
* @param deptNameList * @param deptNameList
*/ */
public SingleMatterQuery deptNameList(List<String> deptNameList){ public SingleMatterQuery deptNameList(List<String> deptNameList){
this.deptNameList = deptNameList; this.deptNameList = deptNameList;
return this; return this;
} }
/** /**
* 设置 部门编码 * 设置 部门编码
* @param deptCode * @param deptCode
*/ */
public SingleMatterQuery deptCode(String deptCode){ public SingleMatterQuery deptCode(String deptCode){
setDeptCode(deptCode); setDeptCode(deptCode);
return this; return this;
} }
/** /**
* 设置 部门编码 * 设置 部门编码
* @param deptCodeList * @param deptCodeList
*/ */
public SingleMatterQuery deptCodeList(List<String> deptCodeList){ public SingleMatterQuery deptCodeList(List<String> deptCodeList){
this.deptCodeList = deptCodeList; this.deptCodeList = deptCodeList;
return this; return this;
} }
/** /**
* 设置 事项来源 * 设置 事项来源
* @param source * @param source
*/ */
public SingleMatterQuery source(Integer source){ public SingleMatterQuery source(Integer source){
setSource(source); setSource(source);
return this; return this;
} }
/** /**
* 设置 开始 事项来源 * 设置 开始 事项来源
* @param sourceStart * @param sourceStart
*/ */
public SingleMatterQuery sourceStart(Integer sourceStart){ public SingleMatterQuery sourceStart(Integer sourceStart){
this.sourceStart = sourceStart; this.sourceStart = sourceStart;
return this; return this;
} }
/** /**
* 设置 结束 事项来源 * 设置 结束 事项来源
* @param sourceEnd * @param sourceEnd
*/ */
public SingleMatterQuery sourceEnd(Integer sourceEnd){ public SingleMatterQuery sourceEnd(Integer sourceEnd){
this.sourceEnd = sourceEnd; this.sourceEnd = sourceEnd;
return this; return this;
} }
/** /**
* 设置 增加 事项来源 * 设置 增加 事项来源
* @param sourceIncrement * @param sourceIncrement
*/ */
public SingleMatterQuery sourceIncrement(Integer sourceIncrement){ public SingleMatterQuery sourceIncrement(Integer sourceIncrement){
this.sourceIncrement = sourceIncrement; this.sourceIncrement = sourceIncrement;
return this; return this;
} }
/** /**
* 设置 事项来源 * 设置 事项来源
* @param sourceList * @param sourceList
*/ */
public SingleMatterQuery sourceList(List<Integer> sourceList){ public SingleMatterQuery sourceList(List<Integer> sourceList){
this.sourceList = sourceList; this.sourceList = sourceList;
return this; return this;
} }
/** /**
* 设置 事项来源 * 设置 事项来源
* @param sourceNotList * @param sourceNotList
*/ */
public SingleMatterQuery sourceNotList(List<Integer> sourceNotList){ public SingleMatterQuery sourceNotList(List<Integer> sourceNotList){
this.sourceNotList = sourceNotList; this.sourceNotList = sourceNotList;
return this; return this;
} }
/** /**
* 设置 事项类型 * 设置 事项类型
* @param eventTypeShow * @param eventTypeShow
*/ */
public SingleMatterQuery eventTypeShow(String eventTypeShow){ public SingleMatterQuery eventTypeShow(String eventTypeShow){
setEventTypeShow(eventTypeShow); setEventTypeShow(eventTypeShow);
return this; return this;
} }
/** /**
* 设置 事项类型 * 设置 事项类型
* @param eventTypeShowList * @param eventTypeShowList
*/ */
public SingleMatterQuery eventTypeShowList(List<String> eventTypeShowList){ public SingleMatterQuery eventTypeShowList(List<String> eventTypeShowList){
this.eventTypeShowList = eventTypeShowList; this.eventTypeShowList = eventTypeShowList;
return this; return this;
} }
/** /**
* 设置 浏览次数 * 设置 浏览次数
* @param viewsCount * @param viewsCount
*/ */
public SingleMatterQuery viewsCount(Long viewsCount){ public SingleMatterQuery viewsCount(Long viewsCount){
setViewsCount(viewsCount); setViewsCount(viewsCount);
return this; return this;
} }
/** /**
* 设置 开始 浏览次数 * 设置 开始 浏览次数
* @param viewsCountStart * @param viewsCountStart
*/ */
public SingleMatterQuery viewsCountStart(Long viewsCountStart){ public SingleMatterQuery viewsCountStart(Long viewsCountStart){
this.viewsCountStart = viewsCountStart; this.viewsCountStart = viewsCountStart;
return this; return this;
} }
/** /**
* 设置 结束 浏览次数 * 设置 结束 浏览次数
* @param viewsCountEnd * @param viewsCountEnd
*/ */
public SingleMatterQuery viewsCountEnd(Long viewsCountEnd){ public SingleMatterQuery viewsCountEnd(Long viewsCountEnd){
this.viewsCountEnd = viewsCountEnd; this.viewsCountEnd = viewsCountEnd;
return this; return this;
} }
/** /**
* 设置 增加 浏览次数 * 设置 增加 浏览次数
* @param viewsCountIncrement * @param viewsCountIncrement
*/ */
public SingleMatterQuery viewsCountIncrement(Long viewsCountIncrement){ public SingleMatterQuery viewsCountIncrement(Long viewsCountIncrement){
this.viewsCountIncrement = viewsCountIncrement; this.viewsCountIncrement = viewsCountIncrement;
return this; return this;
} }
/** /**
* 设置 浏览次数 * 设置 浏览次数
* @param viewsCountList * @param viewsCountList
*/ */
public SingleMatterQuery viewsCountList(List<Long> viewsCountList){ public SingleMatterQuery viewsCountList(List<Long> viewsCountList){
this.viewsCountList = viewsCountList; this.viewsCountList = viewsCountList;
return this; return this;
} }
/** /**
* 设置 浏览次数 * 设置 浏览次数
* @param viewsCountNotList * @param viewsCountNotList
*/ */
public SingleMatterQuery viewsCountNotList(List<Long> viewsCountNotList){ public SingleMatterQuery viewsCountNotList(List<Long> viewsCountNotList){
this.viewsCountNotList = viewsCountNotList; this.viewsCountNotList = viewsCountNotList;
return this; return this;
} }
/** /**
* 设置 是否生成本地附件 * 设置 是否生成本地附件
* @param isConvert * @param isConvert
*/ */
public SingleMatterQuery isConvert(Integer isConvert){ public SingleMatterQuery isConvert(Integer isConvert){
setIsConvert(isConvert); setIsConvert(isConvert);
return this; return this;
} }
/** /**
* 设置 开始 是否生成本地附件 * 设置 开始 是否生成本地附件
* @param isConvertStart * @param isConvertStart
*/ */
public SingleMatterQuery isConvertStart(Integer isConvertStart){ public SingleMatterQuery isConvertStart(Integer isConvertStart){
this.isConvertStart = isConvertStart; this.isConvertStart = isConvertStart;
return this; return this;
} }
/** /**
* 设置 结束 是否生成本地附件 * 设置 结束 是否生成本地附件
* @param isConvertEnd * @param isConvertEnd
*/ */
public SingleMatterQuery isConvertEnd(Integer isConvertEnd){ public SingleMatterQuery isConvertEnd(Integer isConvertEnd){
this.isConvertEnd = isConvertEnd; this.isConvertEnd = isConvertEnd;
return this; return this;
} }
/** /**
* 设置 增加 是否生成本地附件 * 设置 增加 是否生成本地附件
* @param isConvertIncrement * @param isConvertIncrement
*/ */
public SingleMatterQuery isConvertIncrement(Integer isConvertIncrement){ public SingleMatterQuery isConvertIncrement(Integer isConvertIncrement){
this.isConvertIncrement = isConvertIncrement; this.isConvertIncrement = isConvertIncrement;
return this; return this;
} }
/** /**
* 设置 是否生成本地附件 * 设置 是否生成本地附件
* @param isConvertList * @param isConvertList
*/ */
public SingleMatterQuery isConvertList(List<Integer> isConvertList){ public SingleMatterQuery isConvertList(List<Integer> isConvertList){
this.isConvertList = isConvertList; this.isConvertList = isConvertList;
return this; return this;
} }
/** /**
* 设置 是否生成本地附件 * 设置 是否生成本地附件
* @param isConvertNotList * @param isConvertNotList
*/ */
public SingleMatterQuery isConvertNotList(List<Integer> isConvertNotList){ public SingleMatterQuery isConvertNotList(List<Integer> isConvertNotList){
this.isConvertNotList = isConvertNotList; this.isConvertNotList = isConvertNotList;
return this; return this;
} }
/** /**
* 设置 事项详情链接 * 设置 事项详情链接
* @param url * @param url
*/ */
public SingleMatterQuery url(String url){ public SingleMatterQuery url(String url){
setUrl(url); setUrl(url);
return this; return this;
} }
/** /**
* 设置 事项详情链接 * 设置 事项详情链接
* @param urlList * @param urlList
*/ */
public SingleMatterQuery urlList(List<String> urlList){ public SingleMatterQuery urlList(List<String> urlList){
this.urlList = urlList; this.urlList = urlList;
return this; return this;
}
/**
* 设置 热门事项
* @param hot
*/
public SingleMatterQuery hot(Integer hot){
setHot(hot);
return this;
}
/**
* 设置 开始 热门事项
* @param hotStart
*/
public SingleMatterQuery hotStart(Integer hotStart){
this.hotStart = hotStart;
return this;
}
/**
* 设置 结束 热门事项
* @param hotEnd
*/
public SingleMatterQuery hotEnd(Integer hotEnd){
this.hotEnd = hotEnd;
return this;
} }
/** /**
* 设置 创建用户 * 设置 增加 热门事项
* @param createUserId * @param hotIncrement
*/ */
public SingleMatterQuery hotIncrement(Integer hotIncrement){
this.hotIncrement = hotIncrement;
return this;
}
/**
* 设置 热门事项
* @param hotList
*/
public SingleMatterQuery hotList(List<Integer> hotList){
this.hotList = hotList;
return this;
}
/**
* 设置 热门事项
* @param hotNotList
*/
public SingleMatterQuery hotNotList(List<Integer> hotNotList){
this.hotNotList = hotNotList;
return this;
}
/**
* 设置 创建用户
* @param createUserId
*/
public SingleMatterQuery createUserId(Long createUserId){ public SingleMatterQuery createUserId(Long createUserId){
setCreateUserId(createUserId); setCreateUserId(createUserId);
return this; return this;
} }
/** /**
* 设置 开始 创建用户 * 设置 开始 创建用户
* @param createUserIdStart * @param createUserIdStart
*/ */
public SingleMatterQuery createUserIdStart(Long createUserIdStart){ public SingleMatterQuery createUserIdStart(Long createUserIdStart){
this.createUserIdStart = createUserIdStart; this.createUserIdStart = createUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 创建用户 * 设置 结束 创建用户
* @param createUserIdEnd * @param createUserIdEnd
*/ */
public SingleMatterQuery createUserIdEnd(Long createUserIdEnd){ public SingleMatterQuery createUserIdEnd(Long createUserIdEnd){
this.createUserIdEnd = createUserIdEnd; this.createUserIdEnd = createUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 创建用户 * 设置 增加 创建用户
* @param createUserIdIncrement * @param createUserIdIncrement
*/ */
public SingleMatterQuery createUserIdIncrement(Long createUserIdIncrement){ public SingleMatterQuery createUserIdIncrement(Long createUserIdIncrement){
this.createUserIdIncrement = createUserIdIncrement; this.createUserIdIncrement = createUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdList * @param createUserIdList
*/ */
public SingleMatterQuery createUserIdList(List<Long> createUserIdList){ public SingleMatterQuery createUserIdList(List<Long> createUserIdList){
this.createUserIdList = createUserIdList; this.createUserIdList = createUserIdList;
return this; return this;
} }
/** /**
* 设置 创建用户 * 设置 创建用户
* @param createUserIdNotList * @param createUserIdNotList
*/ */
public SingleMatterQuery createUserIdNotList(List<Long> createUserIdNotList){ public SingleMatterQuery createUserIdNotList(List<Long> createUserIdNotList){
this.createUserIdNotList = createUserIdNotList; this.createUserIdNotList = createUserIdNotList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserId * @param updateUserId
*/ */
public SingleMatterQuery updateUserId(Long updateUserId){ public SingleMatterQuery updateUserId(Long updateUserId){
setUpdateUserId(updateUserId); setUpdateUserId(updateUserId);
return this; return this;
} }
/** /**
* 设置 开始 更新用户 * 设置 开始 更新用户
* @param updateUserIdStart * @param updateUserIdStart
*/ */
public SingleMatterQuery updateUserIdStart(Long updateUserIdStart){ public SingleMatterQuery updateUserIdStart(Long updateUserIdStart){
this.updateUserIdStart = updateUserIdStart; this.updateUserIdStart = updateUserIdStart;
return this; return this;
} }
/** /**
* 设置 结束 更新用户 * 设置 结束 更新用户
* @param updateUserIdEnd * @param updateUserIdEnd
*/ */
public SingleMatterQuery updateUserIdEnd(Long updateUserIdEnd){ public SingleMatterQuery updateUserIdEnd(Long updateUserIdEnd){
this.updateUserIdEnd = updateUserIdEnd; this.updateUserIdEnd = updateUserIdEnd;
return this; return this;
} }
/** /**
* 设置 增加 更新用户 * 设置 增加 更新用户
* @param updateUserIdIncrement * @param updateUserIdIncrement
*/ */
public SingleMatterQuery updateUserIdIncrement(Long updateUserIdIncrement){ public SingleMatterQuery updateUserIdIncrement(Long updateUserIdIncrement){
this.updateUserIdIncrement = updateUserIdIncrement; this.updateUserIdIncrement = updateUserIdIncrement;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdList * @param updateUserIdList
*/ */
public SingleMatterQuery updateUserIdList(List<Long> updateUserIdList){ public SingleMatterQuery updateUserIdList(List<Long> updateUserIdList){
this.updateUserIdList = updateUserIdList; this.updateUserIdList = updateUserIdList;
return this; return this;
} }
/** /**
* 设置 更新用户 * 设置 更新用户
* @param updateUserIdNotList * @param updateUserIdNotList
*/ */
public SingleMatterQuery updateUserIdNotList(List<Long> updateUserIdNotList){ public SingleMatterQuery updateUserIdNotList(List<Long> updateUserIdNotList){
this.updateUserIdNotList = updateUserIdNotList; this.updateUserIdNotList = updateUserIdNotList;
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<SingleMatterQuery> getOrConditionList(){ public List<SingleMatterQuery> 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<SingleMatterQuery> orConditionList){ public void setOrConditionList(List<SingleMatterQuery> 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<SingleMatterQuery> getAndConditionList(){ public List<SingleMatterQuery> 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<SingleMatterQuery> andConditionList){ public void setAndConditionList(List<SingleMatterQuery> andConditionList){
this.andConditionList = andConditionList; this.andConditionList = andConditionList;
} }
......
...@@ -45,7 +45,8 @@ public class SingleMatterController extends BaseCRUDJsonBodyMappingController<Si ...@@ -45,7 +45,8 @@ public class SingleMatterController extends BaseCRUDJsonBodyMappingController<Si
@Override @Override
protected void init(Map<String, Object> model, Context context) { protected void init(Map<String, Object> model, Context context) {
this.addDict(model, "source", paramService.getParamBySecondOrganize("SiteMatter","source")); this.addDict(model, "source", paramService.getParamBySecondOrganize("SiteMatter","source"));
this.addDict(model, "isConvert", paramService.getParamBySecondOrganize("SingleMatter","isConvert")); this.addDict(model, "isConvert", paramService.getParamBySecondOrganize("Matter","isOnline"));
this.addDict(model, "hot", paramService.getParamBySecondOrganize("Matter","isOnline"));
super.init(model, context); super.init(model, context);
} }
...@@ -64,6 +65,7 @@ public class SingleMatterController extends BaseCRUDJsonBodyMappingController<Si ...@@ -64,6 +65,7 @@ public class SingleMatterController extends BaseCRUDJsonBodyMappingController<Si
@Override @Override
protected void doListBefore(SingleMatterEntity query, Map<String, Object> model, Context context) throws AppException { protected void doListBefore(SingleMatterEntity query, Map<String, Object> model, Context context) throws AppException {
List<OrderCol> orderColList = new ArrayList<>(); List<OrderCol> orderColList = new ArrayList<>();
orderColList.add(new OrderCol("hot", "desc"));
orderColList.add(new OrderCol("viewsCount", "desc")); orderColList.add(new OrderCol("viewsCount", "desc"));
orderColList.add(new OrderCol("createTime", "desc")); orderColList.add(new OrderCol("createTime", "desc"));
query.setOrderColList(orderColList); query.setOrderColList(orderColList);
......
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