@@ -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
{