供应商分页

This commit is contained in:
liux 2025-07-01 15:39:17 +08:00
parent bdb8de04db
commit 62dae04182
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ public class SupplierController extends BaseController {
//@RequiresPermissions("ims:supplier:list") //@RequiresPermissions("ims:supplier:list")
@GetMapping("/list") @GetMapping("/list")
public TableDataInfo list(SupplierPageDTO supplierPageDTO) { public TableDataInfo list(SupplierPageDTO supplierPageDTO) {
if(supplierPageDTO.getIsPaging() == 2){ if(supplierPageDTO.getIsPaging() == 2 || supplierPageDTO.getIsPaging() == null) {
startPage(); startPage();
} }
List<SupplierPageVO>list = supplierService.selectSupplierList(supplierPageDTO); List<SupplierPageVO>list = supplierService.selectSupplierList(supplierPageDTO);