This commit is contained in:
seesaw
2024-11-06 17:19:22 +08:00
parent 2377fb61ed
commit 7b6ac84470
2 changed files with 4 additions and 3 deletions

View File

@ -89,9 +89,9 @@ public class AppDevuceController {
@GetMapping("/dishes/page")
@Operation(summary = "获得菜品列表分页")
public CommonResult< PageResult<DevuceRespVO>> getDishesPage(Long carteenId,Long dishecType,String dishesName,Integer pageNo,Integer pageSize) {
public CommonResult< PageResult<DishesRespVO>> getDishesPage(Long carteenId,Long dishecType,String dishesName,Integer pageNo,Integer pageSize) {
PageResult<DishesDO> dishesList = devuceService.getDishesPage(carteenId,dishecType,dishesName,pageNo,pageSize);
return success(BeanUtils.toBean(dishesList, DevuceRespVO.class));
return success(BeanUtils.toBean(dishesList, DishesRespVO.class));
}
@GetMapping("/list")