You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
package com.macro.mall.controller;
|
|
|
|
import com.macro.mall.common.api.CommonResult;
|
|
import com.macro.mall.model.CmsPrefrenceArea;
|
|
import com.macro.mall.service.CmsPrefrenceAreaService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 商品优选管理Controller
|
|
* Created by macro on 2018/6/1.
|
|
*/
|
|
@Controller
|
|
@Api(tags = "CmsPrefrenceAreaController")
|
|
@Tag(name = "CmsPrefrenceAreaController", description = "商品优选管理")
|
|
@RequestMapping("/prefrenceArea")
|
|
public class CmsPrefrenceAreaController {
|
|
@Autowired
|
|
private CmsPrefrenceAreaService prefrenceAreaService;
|
|
|
|
@ApiOperation("获取所有商品优选")
|
|
@RequestMapping(value = "/listAll", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
public CommonResult<List<CmsPrefrenceArea>> listAll() {
|
|
List<CmsPrefrenceArea> prefrenceAreaList = prefrenceAreaService.listAll();
|
|
return CommonResult.success(prefrenceAreaList);
|
|
}
|
|
}
|