using Mapster; namespace Customer.Source { /// /// APP页面模板默认样式 app_project_page_style /// public class AppProjectPageStyle { /// /// APP项目ID /// public int appId { get; set; } /// /// 版本ID /// public int versionId { get; set; } /// /// 背景色 /// public string? backgroudColor { get; set; } /// /// 前景色 /// public string? textColor { get; set; } /// /// 苹果状态栏 /// public string? statusBarStyle { get; set; } /// /// 显示头部 /// public bool showTitle { get; set; } /// /// 页面滚动条 /// public bool showScrollBar { get; set; } /// /// 手势侧滑返回 /// public bool skidFlag { get; set; } /// /// 顶部标题位置 /// public string? titlePosition { get; set; } /// /// 页面强制更新 /// public bool mustUpdate { get; set; } /// /// ID /// public int id { get; set; } /// /// 状态 /// public int status { get; set; } /// /// 排序 /// public int sort { get; set; } /// /// 版本号 /// public int version { get; set; } /// /// 创建时间 /// public DateTime? createDate { get; set; } /// /// 更新时间 /// public DateTime? updateDate { get; set; } } }