修改bug

This commit is contained in:
yangjun 2026-03-18 16:31:31 +08:00
parent 0a19b058f1
commit 169ee686ee
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class OrgApplyInfoController extends JeecgController<OrgApplyInfo, IOrgAp
String value = orgApplyInfo.getTitle();
queryWrapper.and(c -> c.like("com_name", value).or().like("org_leader", value).or().like("org_leader_phone", value));
}
queryWrapper.in("status", "2,3".split(","));
queryWrapper.in("status", "1,2,3".split(","));
IPage<OrgApplyInfo> pageList = orgApplyInfoService.page(page, queryWrapper);
return Result.OK(pageList);
}