You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
432 B

using System;
using System.Collections.Generic;
namespace 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 Type Type { get; set; }
public List<EntityColumnInfo> Columns { get; set; }
}
}