package com.gkhy.hazmat.admin.controller.web; import com.gkhy.hazmat.common.annotation.RepeatSubmit; import com.gkhy.hazmat.common.api.CommonResult; import com.gkhy.hazmat.system.domain.HzProduct; import com.gkhy.hazmat.system.service.HzProductService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; /** *
* 危化品表 前端控制器 *
* * @author kzy * @since 2024-08-05 14:41:40 */ @Api(tags = "成品前端控制器") @RestController @RequestMapping("/product") public class HzProductController { @Autowired private HzProductService productService; @ApiOperation(value = "成品列表(分页)") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"), @ApiImplicitParam(paramType = "query", name = "warehouseId", dataType = "long", required = true, value = "仓库id"), @ApiImplicitParam(paramType = "query", name = "basicId", dataType = "long", required = true, value = "成品基础数据id") }) @GetMapping("/list") public CommonResult list(HzProduct product){ return CommonResult.success(productService.selectProductList(product)); } @ApiOperation(value = "成品汇总(电子仓库)(分页)") @ApiImplicitParams({ @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"), @ApiImplicitParam(paramType = "query", name = "warehouseId", dataType = "long", required = true, value = "仓库id"), @ApiImplicitParam(paramType = "query", name = "basicId", dataType = "long", required = true, value = "成品基础数据id") }) @GetMapping("/productCollect") public CommonResult productCollect(HzProduct product){ return CommonResult.success(productService.selectProductGroupWarehouse(product)); } @RepeatSubmit @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')") @ApiOperation(value = "删除成品") @DeleteMapping(value = { "/{productId}" }) public CommonResult delete(@PathVariable(value = "productId", required = true) Long productId){ return CommonResult.success(productService.deleteProductById(productId)); } @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')") @RepeatSubmit @ApiOperation(value = "二维码作废") @PostMapping(value = { "/productDiscard/{productId}" }) public CommonResult productDiscard(@PathVariable(value = "productId", required = true) Long productId){ productService.productDiscard(productId); return CommonResult.success(); } @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')") @RepeatSubmit @ApiOperation(value = "修改状态") @PostMapping(value = { "/changeState" }) public CommonResult changeState(HzProduct product){ productService.changeState(product); return CommonResult.success(); } }