using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PromotePageStatistic Data Structure. /// [Serializable] public class PromotePageStatistic : AopObject { /// /// 留资量 /// [XmlElement("conversion_cnt")] public string ConversionCnt { get; set; } /// /// 留资页页面ID /// [XmlElement("page_id")] public string PageId { get; set; } /// /// 留资页名称 /// [XmlElement("page_name")] public string PageName { get; set; } /// /// 页面浏览pv /// [XmlElement("pv")] public string Pv { get; set; } /// /// 格式YYYYMMdd /// [XmlElement("report_date")] public string ReportDate { get; set; } /// /// 人均停留时长(秒) /// [XmlElement("residence_time")] public string ResidenceTime { get; set; } /// /// 页面浏览uv /// [XmlElement("uv")] public string Uv { get; set; } } }