package com.ltkj.web.controller.mall; import java.util.List; import javax.servlet.http.HttpServletResponse; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; 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.ltkj.common.annotation.Log; import com.ltkj.common.core.controller.BaseController; import com.ltkj.common.core.domain.AjaxResult; import com.ltkj.common.enums.BusinessType; import com.ltkj.mall.domain.MallCategory; import com.ltkj.mall.service.IMallCategoryService; import com.ltkj.common.utils.poi.ExcelUtil; import com.ltkj.common.core.page.TableDataInfo; /** * 类目Controller * * @author ltkj_赵佳豪&李格 * @date 2023-07-12 */ @RestController @RequestMapping("/mall/category") @Api(tags = "mall类目") public class MallCategoryController extends BaseController { @Autowired private IMallCategoryService mallCategoryService; /** * 查询类目列表 */ @PreAuthorize("@ss.hasPermi('mall:category:list')") @GetMapping("/list") @ApiOperation(value = "查询类目列表") public TableDataInfo list(MallCategory mallCategory) { startPage(); List list = mallCategoryService.selectMallCategoryList(mallCategory); return getDataTable(list); } /** * 导出类目列表 */ @PreAuthorize("@ss.hasPermi('mall:category:export')") @Log(title = "类目", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, MallCategory mallCategory) { List list = mallCategoryService.selectMallCategoryList(mallCategory); ExcelUtil util = new ExcelUtil(MallCategory.class); util.exportExcel(response, list, "类目数据"); } /** * 获取类目详细信息 */ @ApiOperation(value = "获取类目详细信息") @PreAuthorize("@ss.hasPermi('mall:category:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(mallCategoryService.selectMallCategoryById(id)); } /** * 新增类目 */ @ApiOperation(value = "新增类目") @PreAuthorize("@ss.hasPermi('mall:category:add')") @Log(title = "类目", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody MallCategory mallCategory) { return toAjax(mallCategoryService.insertMallCategory(mallCategory)); } /** * 修改类目 */ @ApiOperation(value = "修改类目") @PreAuthorize("@ss.hasPermi('mall:category:edit')") @Log(title = "类目", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody MallCategory mallCategory) { return toAjax(mallCategoryService.updateMallCategory(mallCategory)); } /** * 删除类目 */ @ApiOperation(value = "删除类目") @PreAuthorize("@ss.hasPermi('mall:category:remove')") @Log(title = "类目", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(mallCategoryService.deleteMallCategoryByIds(ids)); } }