skyouc
2025-04-01 d346400e27af0205539dd61f72dd2cdf40d44ab9
rsf-server/src/main/java/com/vincent/rsf/server/api/controller/MobileController.java
@@ -163,7 +163,16 @@
            return R.error("跟踪码不能为空!!");
        }
        return R.ok(mobileService.unBind(param));
    }
    @ApiOperation("报检")
    @GetMapping("/asnOrder/inspect/{code}")
    @PreAuthorize("hasAuthority('manager:waitPakin:list')")
    public R getAsnOdrers(@PathVariable String code) {
        if (Objects.isNull(code)) {
            throw new CoolException("参数不能为空!!");
        }
        return mobileService.inspect(code, getLoginUserId());
    }
}