package com.gkhy.hazmat.admin.controller.app; import com.gkhy.hazmat.common.api.CommonResult; import com.gkhy.hazmat.common.enums.CodePrexEnum; import com.gkhy.hazmat.system.service.HzHazmatFlowService; import com.gkhy.hazmat.system.service.HzProductFlowService; 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.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; /** *

* 危化品流向表 前端控制器 *

* * @author kzy * @since 2024-08-05 14:41:40 */ @Api(tags = "APP原材料危化品流向前端控制器") @RestController @RequestMapping("/app/hazmat-flow") public class AppHazmatFlowController { @Autowired private HzHazmatFlowService hazmatFlowService; @Autowired private HzProductFlowService productFlowService; @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')") @ApiOperation(value = "根据条码code查询危化品所有流向") @GetMapping(value = { "/getHazmatFlowByCode" }) public CommonResult getAllHazmatFlowByCode(@RequestParam(required = true) String code){ if(code.startsWith(CodePrexEnum.MATERIAL.getCode())){ return CommonResult.success(hazmatFlowService.selectAllHazmatFlowByCode(code)); }else if(code.startsWith(CodePrexEnum.GOOD.getCode())){ return CommonResult.success(productFlowService.selectAllProductFlowByCode(code)); }else{ return CommonResult.failed("条码格式不正确"); } // return CommonResult.success(hazmatFlowService.selectAllHazmatFlowByCode(code)); } @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')") @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") }) @GetMapping(value = { "/getHazmatFlowByUser" }) public CommonResult getAllHazmatFlowByUser(){ return CommonResult.success(hazmatFlowService.selectAllHazmatFlowByUser()); } }