cook_recipe/listAll

This commit is contained in:
sxu 2025-07-15 16:22:08 +08:00
parent ccb427c2cb
commit 2f6eafb811
1 changed files with 8 additions and 0 deletions

View File

@ -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")