using Mapster;
namespace Model
{
///
/// APP页面模板默认样式 app_project_page_style
///
[SugarTable("app_project_page_style", "APP页面模板默认样式")]
[Tenant("0")]
public class AppProjectPageStyle
{
///
/// APP项目ID
///
[SugarColumn(ColumnDescription = "APP项目ID", ColumnName = "app_id")]
public int appId { get; set; }
///
/// 背景色
///
[SugarColumn(ColumnDescription = "背景色", Length = 6, ColumnName = "backgroud_color")]
public string? backgroudColor { get; set; }
///
/// 前景色
///
[SugarColumn(ColumnDescription = "前景色", Length = 6, ColumnName = "text_color")]
public string? textColor { get; set; }
///
/// 苹果状态栏
///
[SugarColumn(ColumnDescription = "苹果状态栏", Length = 10, ColumnName = "status_bar_style")]
public string? statusBarStyle { get; set; }
///
/// 显示头部
///
[SugarColumn(ColumnDescription = "显示头部", ColumnName = "show_title")]
public bool showTitle { get; set; }
///
/// 页面滚动条
///
[SugarColumn(ColumnDescription = "页面滚动条", ColumnName = "show_scroll_bar")]
public bool showScrollBar { get; set; }
///
/// 手势侧滑返回
///
[SugarColumn(ColumnDescription = "手势侧滑返回", ColumnName = "skid_flag")]
public bool skidFlag { get; set; }
///
/// 顶部标题位置
///
[SugarColumn(ColumnDescription = "顶部标题位置", Length = 10, ColumnName = "title_position")]
public string? titlePosition { get; set; }
///
/// ID
///
[SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
public int id { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
public int status { get; set; }
///
/// 排序
///
[SugarColumn(ColumnDescription = "排序", ColumnName = "sort")]
public int sort { get; set; }
///
/// 版本号
///
[SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
public int version { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")]
public DateTime? createDate { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")]
public DateTime? updateDate { get; set; }
}
}