IPage<FollowUpPatient> findPatientList(IPage<FollowUpPatient> page, @Param("tenaId") Long tenaId, @Param("groupIdList") List<Long> groupIdList, @Param("labelIdLi 用中文解释
时间: 2024-04-17 21:27:50 浏览: 121
spring-boot List转Page的方法步骤
这个方法是用来根据特定条件查找 FollowUpPatient 对象的列表。方法接受一个 IPage 对象用于分页,tenaId 用于按租户ID进行过滤,groupIdList 用于按组ID列表进行过滤,labelIdList 用于按标签ID列表进行过滤,startTime 用于按开始时间进行过滤,endTime 用于按结束时间进行过滤。方法返回一个包含过滤后的 FollowUpPatient 对象列表的 IPage 对象。
阅读全文