zyf
2025-11-27 d7f491034ae9694741178f17f809143f48470520
MESApplication/Controllers/QC/RKJController.cs
@@ -411,4 +411,25 @@
        }
    }
    [HttpPost("RKJReSubmit")]
    public ResponseResult reSubmit(RKJDto rkjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var res =
                new RKJService().reSubmit(rkjDto);
            return new ResponseResult
            {
                status = 0,
                message = "撤回成功",
                data = res
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}