cook_recipe/listAll
This commit is contained in:
parent
ccb427c2cb
commit
2f6eafb811
|
|
@ -53,6 +53,14 @@ public class CookRecipeController extends BaseController {
|
|||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "查询菜品计划信息列表")
|
||||
//@RequiresPermissions("cook:recipe:list")
|
||||
@GetMapping("/listAll")
|
||||
public TableDataInfo listAll(CookRecipe cookRecipe) {
|
||||
List<CookRecipe> list = cookRecipeService.selectCookRecipeList(cookRecipe);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
@ApiOperation(value = "当前菜谱")
|
||||
//@RequiresPermissions("menu:recipe:list")
|
||||
@PostMapping("/currentList")
|
||||
|
|
|
|||
Loading…
Reference in New Issue