using Newtonsoft.Json; namespace Vo.Admin { /// /// 列表 /// public class GetAppReportRecordListVo { /// /// ID /// public long id { get; set; } /// /// 创建时间 /// public DateTime? createTime { get; set; } /// /// 上报版本号 /// public string appVersion { get; set; } /// /// 用户标识 /// public string userTag { get; set; } /// /// 页面标题 /// public string pageTitle { get; set; } /// /// 页面地址 /// public string pageUrl { get; set; } /// /// 设备尺寸 /// public string deviceSize { get; set; } /// /// 上报类型 /// public string reportType { get; set; } /// /// 上报数据 /// public string reportData { get; set; } /// /// 用户系统信息 /// public string userSysInfo { get; set; } } }