using Admin.NET.Core; namespace Admin.NET.Application.Entity; /// /// 网址信息 /// [SugarTable("UrlInfo","网址信息")] public class UrlInfo : EntityBase { /// /// 名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "名称", Length = 32)] public string? Name { get; set; } /// /// 网址 /// [SugarColumn(ColumnName = "Url", ColumnDescription = "网址", Length = 128)] public string? Url { get; set; } /// /// 网址类型ID /// [SugarColumn(ColumnName = "UrlTypeId", ColumnDescription = "网址类型ID")] public long? UrlTypeId { get; set; } /// /// 网址类型 /// [SugarColumn(ColumnName = "UrlType", ColumnDescription = "网址类型", Length = 32)] public string? UrlType { get; set; } /// /// 是否启用 /// [SugarColumn(ColumnName = "IsEnable", ColumnDescription = "是否启用")] public bool? IsEnable { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 32)] public string? Remarks { get; set; } }