getDefaultCondition方法(基于上面第一次改动)最后的return有问题,当前面一个为空时,后面不需要有 and 前缀,请修改正确。
GitHub Copilot:
您的观察是正确的。在当前的实现中,如果forceTenderPublish不等于”1”,那么返回的字符串将以” and “开始,这可能会导致SQL查询错误。我们可以通过将所有条件添加到一个列表中,然后使用String.join方法来解决这个问题。这样,只有当列表中有多个元素时,” and “才会被插入。
List<String> currentUserDeptIds = getCurrentUserDeptIds(); if (!currentUserDeptIds.isEmpty()) { conditions.add("cdeptid in (" + String.join(",", currentUserDeptIds) + ")"); }
return String.join(" and ", conditions);
在这个修改后的版本中,我们首先创建一个空的conditions列表。然后,我们检查forceTenderPublish和currentUserDeptIds,如果它们满足条件,我们就将相应的条件添加到列表中。最后,我们使用String.join方法将所有条件连接起来,每个条件之间用” and “分隔。这样,只有当有多个条件时,” and “才会出现。