using Datory.Annotations; namespace GxPress.Entity.Navigations { /// /// 中间页面 /// [DataTable("tede_middle_lable")] public class MiddleLable : Datory.Entity { /// /// 导航栏ID /// /// [DataColumn] public string Name { get; set; } /// /// 排序 /// /// [DataColumn] public int Sort { get; set; } /// /// 是否禁用 /// /// [DataColumn] public bool IsDisable { get; set; } /// /// 是否开启搜索 /// /// [DataColumn] public bool IsSearch { get; set; } /// /// 是否开启轮播 /// /// [DataColumn] public bool IsSlide { get; set; } /// /// 1 APP 2 首页频道 3首页精选 /// /// [DataColumn] public int TypeId { get; set; } } }