package com.poyee.utils; import cn.hutool.core.bean.BeanUtil; import com.github.pagehelper.PageInfo; import java.util.List; /** * @author huang_run * @date 2026/3/23 10:08 */ public class PageUtil { public static PageInfo convertPage(PageInfo source, List list) { PageInfo target = new PageInfo<>(); BeanUtil.copyProperties(source, target, "list"); target.setList(list); return target; } }