package com.ruoyi.web.controller.api;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
import com.ruoyi.common.core.domain.AjaxResult;
|
import com.ruoyi.framework.web.service.TokenService;
|
import com.ruoyi.system.domain.TGoodsType;
|
import com.ruoyi.system.service.TGoodsTypeService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.*;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 商品分类 前端控制器
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2024-08-14
|
*/
|
@Api(tags = "商品分类")
|
@RestController
|
@RequestMapping("/t-goods-type")
|
public class TGoodsTypeController {
|
|
private final TGoodsTypeService goodsTypeService;
|
private final TokenService tokenService;
|
|
@Autowired
|
public TGoodsTypeController(TGoodsTypeService goodsTypeService, TokenService tokenService) {
|
this.goodsTypeService = goodsTypeService;
|
this.tokenService = tokenService;
|
}
|
|
/**
|
* 查询商品分类列表
|
*/
|
@ApiOperation( value = "查询商品分类列表")
|
@PostMapping(value = "/list")
|
public AjaxResult<List<TGoodsType>> list() {
|
Long shopId = tokenService.getLoginUser().getObjectId();
|
Integer roleType = tokenService.getLoginUser().getRoleType();
|
LambdaQueryWrapper<TGoodsType> wrapper = new LambdaQueryWrapper<>();
|
if(roleType != 1){
|
wrapper.eq(TGoodsType::getShopId, shopId);
|
}
|
return AjaxResult.success(goodsTypeService.list(wrapper));
|
}
|
|
/**
|
* 添加商品分类管理
|
*/
|
@ApiOperation( value = "添加商品分类")
|
@PostMapping(value = "/add")
|
public AjaxResult<Boolean> add(@RequestBody TGoodsType dto) {
|
dto.setShopId(tokenService.getLoginUser().getObjectId());
|
return AjaxResult.success(goodsTypeService.save(dto));
|
}
|
|
/**
|
* 修改商品分类
|
*/
|
@ApiOperation( value = "修改商品分类")
|
@PostMapping(value = "/update")
|
public AjaxResult<Boolean> update(@RequestBody TGoodsType dto) {
|
return AjaxResult.success(goodsTypeService.updateById(dto));
|
}
|
|
/**
|
* 查看商品分类详情
|
*/
|
@ApiOperation( value = "查看商品分类详情")
|
@GetMapping(value = "/getDetailById")
|
public AjaxResult<TGoodsType> getDetailById(@RequestParam("id") Long id) {
|
return AjaxResult.success(goodsTypeService.getById(id));
|
}
|
|
/**
|
* 删除商品分类
|
*/
|
@ApiOperation( value = "删除商品分类")
|
@DeleteMapping(value = "/deleteById")
|
public AjaxResult<Boolean> deleteById(@RequestParam("id") Long id) {
|
return AjaxResult.success(goodsTypeService.removeById(id));
|
}
|
|
/**
|
* 批量删除商品分类
|
*/
|
@ApiOperation( value = "批量删除商品分类")
|
@DeleteMapping(value = "/deleteByIds")
|
public AjaxResult<Boolean> deleteByIds(@RequestBody List<Long> ids) {
|
return AjaxResult.success(goodsTypeService.removeByIds(ids));
|
}
|
|
}
|