修改查询方法

This commit is contained in:
yangjun 2025-09-08 15:20:26 +08:00
parent baacdb6d4d
commit 544b464db4
1 changed files with 4 additions and 1 deletions

View File

@ -341,7 +341,10 @@ public class OrgApplyInfoServiceImpl extends ServiceImpl<OrgApplyInfoMapper, Org
public IPage<OrgAllInfo> queryOrgInfo(IPage<OrgAllInfo> page, String orgCode, String title) {
return baseMapper.queryOrgInfo(page, orgCode, title);
}
@Override
public IPage<OrgAllInfo> getOrgByOpenId(IPage<OrgAllInfo> page, String openId) {
return baseMapper.getOrgByOpenId(page, openId);
}
@Override
public IPage<OrgAllInfoApiEntity> queryOrgAllInfo(Integer pageNo, Integer pageSize, String orgCode, String title) {
IPage<OrgAllInfo> page = new Page<>(pageNo, pageSize);