using Furion.DatabaseAccessor; using Furion.Extras.Admin.NET.Util.LowCode.Front.Att; using Furion.Extras.Admin.NET.Util.LowCode.Front.Model; namespace Furion.Extras.Admin.NET.Util.LowCode.Front { /// /// 富文本框 /// [FrontType("editor")] [FrontTypeBindDatabase(DbProvider.SqlServer, typeof(string), "nvarchar(8000)")] public class Front_Editor : Front_Base { } public class Front_Editor_Options { /// /// 高度 /// public int? Height { get; set; } /// /// 占位内容 /// public string Placeholder { get; set; } /// /// 默认值 /// public string DefaultValue { get; set; } /// /// 汉化 /// public bool Chinesization { get; set; } /// /// 隐藏 /// public bool Hidden { get; set; } /// /// 禁用 /// public bool Disabled { get; set; } /// /// 显示Label /// public bool ShowLabel { get; set; } /// /// 宽度 /// public string Width { get; set; } } }