using Newtonsoft.Json; namespace Vo.Admin { /// /// 详情 /// public class GetAppReportRecordQueryVo { /// /// ID /// public long id { 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; } } }