浏览代码

酒店名单解析

yuanrf 3 月之前
父节点
当前提交
cf7a7dfa0a
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      OASystem/OASystem.Infrastructure/Repositories/Groups/TourClientListRepository.cs

+ 4 - 0
OASystem/OASystem.Infrastructure/Repositories/Groups/TourClientListRepository.cs

@@ -54,6 +54,10 @@ namespace OASystem.Infrastructure.Repositories.Groups
                 string sql = $@"Select b.Id,b.Pinyin,b.lastName,b.firstName,b.phone From  Grp_TourClientList a, Crm_DeleClient b 
                                 Where a.clientid = b.id and a.isdel = 0 and a.diId = {diId}";
                 simplClients = await _sqlSugar.SqlQueryable<SimplClientInfo>(sql).ToListAsync();
+                foreach (var item in simplClients)
+                {
+                    EncryptionProcessor.DecryptProperties(item);
+                }
             }
             else
             {