fly 2 years ago
parent
commit
f7027a1069
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/InteractionCenter/VinnoServerService.cs

+ 3 - 0
src/InteractionCenter/VinnoServerService.cs

@@ -14,6 +14,7 @@ using WingServerCommon.Config;
 using WingServerCommon.Config.Parameters;
 using System.Net;
 using Newtonsoft.Json;
+using WingServerCommon.Mapper;
 
 namespace WingCloudServer.InteractionCenter
 {
@@ -96,6 +97,7 @@ namespace WingCloudServer.InteractionCenter
                             Enable = d.Enable,
                             ServerType = (int)d.ServerType,
                             ServerUrl = d.ServerUrl,
+                            AssignClientIPList = d.AssignClientIPList.MappingTo<List<CacheIPAddressInfoDTO>>()
                         }).ToList();
                     }
                 }
@@ -118,6 +120,7 @@ namespace WingCloudServer.InteractionCenter
                             Enable = d.Enable,
                             ServerType = (int)d.ServerType,
                             ServerUrl = d.ServerUrl,
+                            AssignClientIPList = d.AssignClientIPList.MappingTo<List<CacheIPAddressInfoDTO>>()
                         }).ToList();
                     }
                 }