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

@ -139,6 +139,7 @@ public interface ErrorCodeConstants {
ErrorCode STORE_GOODS_INVENTORY_RECORD_NOT_EXISTS = new ErrorCode(1_004_020_001, "商品出入库记录不存在");
ErrorCode STATISTICS_SPACE_CAPSULE_ORDER_NOT_EXISTS = new ErrorCode(1_004_021_001, "太空舱订单营业额统计不存在");
ErrorCode STORE_REFUND_NOT_EXISTS = new ErrorCode(1_004_021_001, "超市订单退款审核不存在");
}

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