dev环境暂时不上生产的变更
This commit is contained in:
@@ -38,8 +38,8 @@ public class ProjectQueryDTO extends PageQueryBaseVo {
|
|||||||
private Integer intersection;
|
private Integer intersection;
|
||||||
|
|
||||||
// todo 获取历史列表,允许传入多个类型
|
// todo 获取历史列表,允许传入多个类型
|
||||||
private List<String> process;
|
// private List<String> process;
|
||||||
// private String process;
|
private String process;
|
||||||
|
|
||||||
private Integer asc;
|
private Integer asc;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1726,10 +1726,11 @@ public class UserLikeGroupServiceImpl extends ServiceImpl<UserLikeGroupMapper, U
|
|||||||
if (Objects.nonNull(query.getEndDate())) {
|
if (Objects.nonNull(query.getEndDate())) {
|
||||||
queryWrapper.le("update_time", new Date(query.getEndDate()));
|
queryWrapper.le("update_time", new Date(query.getEndDate()));
|
||||||
}
|
}
|
||||||
if (Objects.nonNull(query.getProcess()) && !query.getProcess().isEmpty()) {
|
// if (Objects.nonNull(query.getProcess()) && !query.getProcess().isEmpty()) {
|
||||||
|
if (!StringUtils.isEmpty(query.getProcess())) {
|
||||||
// todo 获取历史列表,允许传入多个类型
|
// todo 获取历史列表,允许传入多个类型
|
||||||
queryWrapper.in("process", query.getProcess());
|
// queryWrapper.in("process", query.getProcess());
|
||||||
// queryWrapper.eq("process", query.getProcess());
|
queryWrapper.eq("process", query.getProcess());
|
||||||
}
|
}
|
||||||
// 新增分类过滤
|
// 新增分类过滤
|
||||||
if (CollectionUtil.isNotEmpty(query.getClassificationIdList())) {
|
if (CollectionUtil.isNotEmpty(query.getClassificationIdList())) {
|
||||||
|
|||||||
Reference in New Issue
Block a user