using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OnlineInviteNewerDetailInfo Data Structure. /// [Serializable] public class OnlineInviteNewerDetailInfo : AopObject { /// /// 用户首登/回流时间 /// [XmlElement("fst_login_time")] public string FstLoginTime { get; set; } /// /// 绑定时间 /// [XmlElement("invite_time")] public string InviteTime { get; set; } /// /// 被邀请手机号 /// [XmlElement("invited_phone")] public string InvitedPhone { get; set; } /// /// 二级渠道 /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 一级渠道 /// [XmlElement("pid")] public string Pid { get; set; } /// /// 用户实名时间 /// [XmlElement("user_cert_time")] public string UserCertTime { get; set; } } }