public async Task <PagingResponseMessage <CustomerNotShops> > GetCustomerNotShops(UserInfo user)
        {
            Logger.Trace($"用户{user?.UserName ?? ""}({user?.Id ?? ""})新增客源不感兴趣商铺信息(PostCustomerNotShops)\r\n");

            var response = new PagingResponseMessage <CustomerNotShops>();

            try
            {
                response = await _shopsManager.GetCustomerNotShopAsync(user, Request.HttpContext.RequestAborted);
            }
            catch (Exception e)
            {
                response.Code    = ResponseCodeDefines.ServiceError;
                response.Message = "服务器错误" + e.ToString();
                Logger.Error($"用户{user?.UserName ?? ""}({user?.Id ?? ""})新增客源不感兴趣商铺信息(PostCustomerNotShops)请求失败:\r\n{response.Message ?? ""},\r\n");
            }
            return(response);
        }