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
             {