Files
ThingsGateway/src/Admin/ThingsGateway.SqlSugar/Sugar/Entities/EntityInfo.cs

18 lines
721 B
C#
Raw Normal View History

2025-06-11 10:26:48 +08:00
namespace ThingsGateway.SqlSugar
2025-06-06 21:13:58 +08:00
{
public class EntityInfo
{
private string _DbTableName;
public string EntityName { get; set; }
public string DbTableName { get { return _DbTableName == null ? EntityName : _DbTableName; } set { _DbTableName = value; } }
public string TableDescription { get; set; }
public Type Type { get; set; }
public List<EntityColumnInfo> Columns { get; set; }
public bool IsDisabledDelete { get; set; }
public bool IsDisabledUpdateAll { get; set; }
public List<SugarIndexAttribute> Indexs { get; set; }
public bool IsCreateTableFieldSort { get; set; }
2025-06-06 21:13:58 +08:00
public string Discrimator { get; set; }
}
}