using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AppVisitTrendDataResponse Data Structure. /// [Serializable] public class AppVisitTrendDataResponse : AopObject { /// /// 小程序的访问次数 /// [XmlElement("app_pv")] public long AppPv { get; set; } /// /// 小程序访问人数 /// [XmlElement("app_uv")] public long AppUv { get; set; } /// /// 数据采集时间 yyyy-MM-dd hh:mm:ss /// [XmlElement("report_time")] public string ReportTime { get; set; } } }