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; }
|
2025-06-25 11:17:04 +08:00
|
|
|
|
public bool IsCreateTableFieldSort { get; set; }
|
2025-06-06 21:13:58 +08:00
|
|
|
|
public string Discrimator { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|