main
dongdingding 10 months ago
parent da51daaf8e
commit 7d6971ae97

@ -56,9 +56,10 @@ public class BPlanEnterpriseController extends BaseController {
*/ */
@ApiOperation(value = "查询计划企业列表", response = BPlanEnterpriseResponse.class) @ApiOperation(value = "查询计划企业列表", response = BPlanEnterpriseResponse.class)
@GetMapping("/list") @GetMapping("/list")
public AjaxResult list(BPlanEnterprise bPlanEnterprise) { public TableDataInfo list(BPlanEnterprise bPlanEnterprise) {
startPage();
List<BPlanEnterpriseResponse> list = bPlanEnterpriseService.selectBPlanEnterpriseList(bPlanEnterprise); List<BPlanEnterpriseResponse> list = bPlanEnterpriseService.selectBPlanEnterpriseList(bPlanEnterprise);
return AjaxResult.success(list); return getDataTable(list);
} }
/** /**

Loading…
Cancel
Save