using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// OfflineInviteNewerDetailInfo Data Structure. /// [Serializable] public class OfflineInviteNewerDetailInfo : AopObject { /// /// 城市 /// [XmlElement("city_name")] public string CityName { get; set; } /// /// 扩展信息字段 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 被邀请手机号 /// [XmlElement("invited_phone")] public string InvitedPhone { get; set; } /// /// 地域系数 /// [XmlElement("lbs_rate")] public string LbsRate { get; set; } /// /// 二级渠道 /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 一级渠道 /// [XmlElement("pid")] public string Pid { get; set; } /// /// 省份 /// [XmlElement("province_name")] public string ProvinceName { get; set; } /// /// 是否可结算核销用户 /// [XmlElement("settled")] public bool Settled { get; set; } /// /// 是否可结算的绑卡用户 /// [XmlElement("settled_and_bind")] public bool SettledAndBind { get; set; } /// /// 绑卡时间 /// [XmlElement("user_bind_card_time")] public string UserBindCardTime { get; set; } /// /// 用户实名时间 /// [XmlElement("user_cert_time")] public string UserCertTime { get; set; } /// /// 用户领奖时间 /// [XmlElement("user_prize_time")] public string UserPrizeTime { get; set; } } }