using Mapster;
namespace Model
{
///
/// app底部导航 app_bottom_navs
///
[SugarTable("app_bottom_navs", "app底部导航")]
[Tenant("0")]
public class AppBottomNavs
{
///
/// 标题
///
[SugarColumn(ColumnDescription = "标题", Length = 10, ColumnName = "title")]
public string title { get; set; }
///
/// 选中图标
///
[SugarColumn(ColumnDescription = "选中图标", Length = 200, ColumnName = "select_icon")]
public string selectIcon { get; set; }
///
/// 未选中图标
///
[SugarColumn(ColumnDescription = "未选中图标", Length = 200, ColumnName = "normal_icon")]
public string normalIcon { get; set; }
///
/// 选中文字颜色
///
[SugarColumn(ColumnDescription = "选中文字颜色", Length = 6, ColumnName = "select_text_color")]
public string selectTextColor { get; set; }
///
/// 未选中文字颜色
///
[SugarColumn(ColumnDescription = "未选中文字颜色", Length = 6, ColumnName = "normal_text_color")]
public string normalTextColor { get; set; }
///
/// 关联页面文件
///
[SugarColumn(ColumnDescription = "关联页面文件", Length = 50, ColumnName = "page_name")]
public string pageName { get; set; }
///
/// 空页面提示信息
///
[SugarColumn(ColumnDescription = "空页面提示信息", Length = 50, ColumnName = "no_page_hint")]
public string noPageHint { get; set; }
///
/// 背景色
///
[SugarColumn(ColumnDescription = "背景色", Length = 6, ColumnName = "backgroud_color")]
public string backgroudColor { get; set; }
///
/// 按钮样式
///
[SugarColumn(ColumnDescription = "按钮样式", Length = 30, ColumnName = "style")]
public string style { get; set; }
///
/// 滚动图片
///
[SugarColumn(ColumnDescription = "滚动图片", Length = 300, ColumnName = "scroller_animation_images")]
public string scrollerAnimationImages { get; set; }
///
/// PAG文件
///
[SugarColumn(ColumnDescription = "PAG文件", Length = 200, ColumnName = "pag_path")]
public string pagPath { get; set; }
///
/// 是否显示标题
///
[SugarColumn(ColumnDescription = "是否显示标题", ColumnName = "show_title")]
public bool showTitle { get; set; }
///
/// pag文件路径
///
[SugarColumn(ColumnDescription = "pag文件路径", Length = 200, ColumnName = "pag_local_path")]
public string pagLocalPath { get; set; }
///
/// pag默认图标
///
[SugarColumn(ColumnDescription = "pag默认图标", Length = 200, ColumnName = "pag_default_icon")]
public string pagDefaultIcon { get; set; }
///
/// 图标尺寸
///
[SugarColumn(ColumnDescription = "图标尺寸", ColumnName = "icon_size")]
public int iconSize { get; set; }
///
/// 状态栏底色
///
[SugarColumn(ColumnDescription = "状态栏底色", Length = 50, ColumnName = "status_bar_color")]
public string statusBarColor { 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; }
///
/// 分类
///
[SugarColumn(ColumnDescription = "分类", Length = 50, ColumnName = "kind")]
public string kind { get; set; }
///
/// 是否PAG
///
[SugarColumn(ColumnDescription = "是否PAG", ColumnName = "pag_flag")]
public bool pagFlag { get; set; }
}
}