|
@@ -1,5 +1,6 @@
|
|
|
package com.fjhx.controller.example;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.fjhx.entity.example.ExampleInfo;
|
|
|
import com.fjhx.service.example.ExampleInfoService;
|
|
|
import org.springblade.core.tool.api.R;
|
|
@@ -32,7 +33,7 @@ public class ExampleInfoController {
|
|
|
*/
|
|
|
@PostMapping("/getWaitingProcessingPage")
|
|
|
public R getWaitingProcessingPage(@RequestBody Map<String, String> condition) {
|
|
|
- List<Map<String, Object>> result = exampleInfoService.getWaitingProcessingPage(condition);
|
|
|
+ Page<Map<String, Object>> result = exampleInfoService.getWaitingProcessingPage(condition);
|
|
|
return R.data(result);
|
|
|
}
|
|
|
|