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("textarea")] [FrontTypeBindDatabase(DbProvider.SqlServer, typeof(string), "nvarchar(2000)")] public class Front_Textarea : Front_Base { } public class Front_Textarea_Options { /// /// 宽度 /// public string Width { get; set; } /// /// 自适应内容高度 /// public int? MinRows { get; set; } /// /// 自适应内容高度 /// public int? MaxRows { get; set; } /// /// 最大长度 /// public int? MaxLength { get; set; } /// /// 默认值 /// public string DefaultValue { get; set; } /// /// 可清除 /// public bool Clearable { get; set; } /// /// 隐藏 /// public bool Hidden { get; set; } /// /// 禁用 /// public bool Disabled { get; set; } /// /// 占位内容 /// public string Placeholder { get; set; } } }