REQ-2595-修复待办根据IdentityCodes查询无效问题

This commit is contained in:
yangqicheng 2024-11-22 15:13:08 +08:00
parent e2abd80fda
commit 35e335d6df

View File

@ -90,7 +90,7 @@ public class TodoDao extends ServiceImpl<TodoMapper, Todo> {
public List<Todo> getByIdentityCodes(List<String> identityCodes) {
return lambdaQuery()
.eq(Todo::getIdentityCode, identityCodes)
.in(Todo::getIdentityCode, identityCodes)
.eq(Todo::getIsDelete, TableIsDeleteEnum.NORMAL.value)
.list();
}