mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-20 10:50:48 +08:00
18 lines
721 B
C#
18 lines
721 B
C#
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<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; }
|
|
public string Discrimator { get; set; }
|
|
}
|
|
}
|