leiy 1 年之前
父节点
当前提交
413c769118
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      OASystem/OASystem.Infrastructure/Repositories/Groups/DelegationInfoRepository.cs

+ 1 - 1
OASystem/OASystem.Infrastructure/Repositories/Groups/DelegationInfoRepository.cs

@@ -413,7 +413,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
                     //客户单位数据源 来源市场客户资料
                     dynamic? clientData1 = null;
                     string clientSql = $@"Select Client,Contact,Telephone,WeChat From Crm_NewClientData Where IsDel = 0";
-                    var clientData = _sqlSugar.SqlQueryable<Crm_NewClientData>(userSql).ToList();
+                    var clientData = _sqlSugar.SqlQueryable<Crm_NewClientData>(clientSql).ToList();
                     if (clientData.Count > 0)
                     {
                         clientData1 = clientData.Select(it => new { it.Client,it.Contact,it.Telephone,it.Wechat }).ToList();