|
@@ -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();
|
|
|
}
|
|
|
}
|