package com.ruoyi.mall.controller; import java.util.List; import com.ruoyi.common.utils.StringUtils; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.mall.domain.MallGoodsGoods; import com.ruoyi.mall.service.IMallGoodsGoodsService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 商品Controller * * @author chang * @date 2021-11-25 */ @RestController @RequestMapping("/mall/mallGoodsGoods") public class MallGoodsGoodsController extends BaseController { @Autowired private IMallGoodsGoodsService mallGoodsGoodsService; /** * 查询商品列表 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:list')") @GetMapping("/list") public TableDataInfo list(MallGoodsGoods mallGoodsGoods) { startPage(); List list = mallGoodsGoodsService.selectMallGoodsGoodsList(mallGoodsGoods); return getDataTable(list); } /** * 导出商品列表 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:export')") @Log(title = "商品", businessType = BusinessType.EXPORT) @GetMapping("/export") public AjaxResult export(MallGoodsGoods mallGoodsGoods) { List list = mallGoodsGoodsService.selectMallGoodsGoodsList(mallGoodsGoods); ExcelUtil util = new ExcelUtil(MallGoodsGoods.class); return util.exportExcel(list, "商品数据"); } /** * 获取商品详细信息 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(mallGoodsGoodsService.selectMallGoodsGoodsById(id)); } /** * 新增商品 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:add')") @Log(title = "商品", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallGoodsGoods mallGoodsGoods) { // if (StringUtils.isEmpty(mallGoodsGoods.getGoodsBanner()) || StringUtils.isEmpty(mallGoodsGoods.getGoodsDetail())){ // return AjaxResult.error("缺少轮播图和详情图"); // } try { return toAjax(mallGoodsGoodsService.insertMallGoodsGoods(mallGoodsGoods)); } catch (Exception e) { return AjaxResult.error("填写内容不完整,请仔细填写"); } } /** * 修改商品 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:edit')") @Log(title = "商品", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallGoodsGoods mallGoodsGoods) { // if (StringUtils.isEmpty(mallGoodsGoods.getGoodsBanner()) || StringUtils.isEmpty(mallGoodsGoods.getGoodsDetail())){ // return AjaxResult.error("缺少轮播图和详情图"); // } return toAjax(mallGoodsGoodsService.updateMallGoodsGoods(mallGoodsGoods)); } /** * 删除商品 */ @PreAuthorize("@ss.hasPermi('mall:mallGoodsGoods:remove')") @Log(title = "商品", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(mallGoodsGoodsService.deleteMallGoodsGoodsByIds(ids)); } }