using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// StaffInfo Data Structure. /// [Serializable] public class StaffInfo : AopObject { /// /// 支付宝登录账号 /// [JsonProperty("logon_id")] public string LogonId { get; set; } /// /// 用户uid /// [JsonProperty("user_id")] public string UserId { get; set; } } }