啊鑫
2025-09-09 f2b71fe1d3c2b7651d525a5b5bbe66fad602ea06
WebApi/GS.QC/Service/FqcExceptionalManager.cs
@@ -9,14 +9,15 @@
using Microsoft.AspNetCore.Mvc;
using static Gs.Toolbox.UtilityHelper;
namespace GS.QC.Service
{
namespace GS.QC.Service;
    [ApiGroup(ApiGroupNames.QC)]
    public class FqcExceptionalManager : IRomteService
    {
        private readonly IHttpContextAccessor _http;
        private readonly string _userCode, _userGuid, _orgFids;
        public FqcExceptionalManager(IHttpContextAccessor httpContextAccessor)
        {
            _http = httpContextAccessor;
@@ -79,6 +80,7 @@
            {
                LogHelper.Debug(ToString(), ex.Message);
            }
            return ReturnDto<PageList<dynamic>>.QuickReturn(_pglist,
                ReturnCode.Success, "读取成功");
        }
@@ -125,7 +127,5 @@
                return ReturnDto<dynamic>.QuickReturn(m, ReturnCode.Success,
                    "读取成功!");
            return ReturnDto<dynamic>.QuickReturn(m, ReturnCode.Default, "读取失败!");
        }
    }
}