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