using Newtonsoft.Json; namespace Vo { /// /// 页面数据检查 /// public class AppPageInfoVo { /// /// 模板更新版本 /// public int moduleVersion { get; set; } /// /// 模板路径 /// public string modulePath { get; set; } /// /// 背景色 /// public string backgroudColor { get; set; } /// /// 前景色 /// public string textColor { get; set; } /// /// 苹果状态栏 /// public string statusBarStyle { get; set; } /// /// 是否显示头部 /// public bool showTitle { get; set; } /// /// 顶部标题 /// public string title { get; set; } /// /// 是否显示滚动条 /// public bool showScrollBar { get; set; } /// /// 是否侧滑返回 /// public bool skidFlag { get; set; } /// /// 左侧按钮1 /// public string leftBtn1 { get; set; } /// /// 左侧按钮2 /// public string leftBtn2 { get; set; } /// /// 右侧按钮1 /// public string rightBtn1 { get; set; } /// /// 右侧按钮2 /// public string rightBtn2 { get; set; } /// /// 左侧按钮1点击事件 /// public string leftAction1 { get; set; } /// /// 左侧按钮2点击事件 /// public string leftAction2 { get; set; } /// /// 右侧按钮1点击事件 /// public string rightAction1 { get; set; } /// /// 右侧按钮2点击事件 /// public string rightAction2 { get; set; } /// /// 是否强制更新 /// public bool mustUpdate { get; set; } /// /// ID /// public int id { get; set; } /// /// 状态 /// public int status { get; set; } /// /// 创建时间 /// public DateTime? createDate { get; set; } /// /// 页面内容 /// public string moduleContent { get; set; } /// /// DataID页面唯一标识 /// public string dataId { get; set; } /// /// 是否读取网页标题 /// public bool webTitle { get; set; } } }