This commit is contained in:
佟明轩 2025-05-20 11:19:35 +08:00
parent 945c08c20f
commit fc45327163
1 changed files with 3 additions and 0 deletions

View File

@ -272,6 +272,9 @@ public class InventoryService extends BaseService {
} }
Page<Map<String, Object>> page = new Page<>(); Page<Map<String, Object>> page = new Page<>();
page.setList(maps);
page.setTotal_page(totalPage);
page.setTotal_count(totalCount);
return page; return page;
} }