select dishes by categoryId

This commit is contained in:
2024-12-15 17:35:10 +08:00
parent aac5b7c677
commit 7747190fd9
3 changed files with 45 additions and 0 deletions

View File

@@ -57,4 +57,6 @@ public interface DishService {
* @param id
*/
void startOrStop(Integer status, Long id);
List<DishVO> getDishVoByCategoryId(Long categoryId);
}