namespace ThingsGateway.SqlSugar { 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 Columns { get; set; } public bool IsDisabledDelete { get; set; } public bool IsDisabledUpdateAll { get; set; } public List Indexs { get; set; } public bool IsCreateTableFieldSort { get; set; } public string Discrimator { get; set; } } }