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

2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. namespace SqlSugar
  4. {
  5. public class EntityInfo
  6. {
  7. private string _DbTableName;
  8. public string EntityName { get; set; }
  9. public string DbTableName { get { return _DbTableName == null ? EntityName : _DbTableName; } set { _DbTableName = value; } }
  10. public Type Type { get; set; }
  11. public List<EntityColumnInfo> Columns { get; set; }
  12. }
  13. }