返回数据

This commit is contained in:
2024-11-20 13:56:19 +08:00
parent 8bb0357190
commit c83155919c

View File

@@ -78,7 +78,7 @@ public class TbShopShareRecordServiceImpl implements TbShopShareRecordService {
for (TbShopShareRecord shareRecord : records) {
shareRecord.setBeInvitedName(userInfoMapper.selectNameByPrimaryKey(shareRecord.getBeInvitedId()));
}
result.put("records", new PageInfo<>());
result.put("records", new PageInfo<>(records));
return result;
}