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