56 lines
1.8 KiB
Java
56 lines
1.8 KiB
Java
package com.sky.controller.user;
|
|
|
|
import com.sky.constant.StatusConstant;
|
|
import com.sky.entity.Setmeal;
|
|
import com.sky.result.Result;
|
|
import com.sky.service.SetmealService;
|
|
import com.sky.vo.DishItemVO;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.cache.annotation.Cacheable;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.util.List;
|
|
|
|
@RestController("userSetmealController")
|
|
@RequestMapping("/user/setmeal")
|
|
@Api(tags = "C端-套餐浏览接口")
|
|
public class SetmealController {
|
|
@Autowired
|
|
private SetmealService setmealService;
|
|
|
|
/**
|
|
* 条件查询
|
|
*
|
|
* @param categoryId
|
|
* @return
|
|
*/
|
|
@GetMapping("/list")
|
|
@ApiOperation("根据分类id查询套餐")
|
|
@Cacheable(cacheNames = "setmealCache", key = "#categoryId") //key:setmealCache::categoryId
|
|
public Result<List<Setmeal>> list(Long categoryId) {
|
|
Setmeal setmeal = new Setmeal();
|
|
setmeal.setCategoryId(categoryId);
|
|
setmeal.setStatus(StatusConstant.ENABLE);
|
|
|
|
List<Setmeal> list = setmealService.list(setmeal);
|
|
return Result.success(list);
|
|
}
|
|
|
|
/**
|
|
* 根据套餐id查询包含的菜品列表
|
|
*
|
|
* @param id
|
|
* @return
|
|
*/
|
|
@GetMapping("/dish/{id}")
|
|
@ApiOperation("根据套餐id查询包含的菜品列表")
|
|
public Result<List<DishItemVO>> dishList(@PathVariable("id") Long id) {
|
|
List<DishItemVO> list = setmealService.getDishItemById(id);
|
|
return Result.success(list);
|
|
}
|
|
}
|