using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// ServiceContext Data Structure. /// [Serializable] public class ServiceContext : AopObject { /// /// 客户端IP /// [JsonProperty("client_ip")] public string ClientIp { get; set; } /// /// 客户端UMID /// [JsonProperty("client_pcidguid")] public string ClientPcidguid { get; set; } /// /// 服务器名 /// [JsonProperty("server_name")] public string ServerName { get; set; } /// /// 会话ID /// [JsonProperty("session_id")] public string SessionId { get; set; } /// /// 用户ID /// [JsonProperty("user_id")] public string UserId { get; set; } } }