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.

25 lines
923 B

2 years ago
  1. using System.Reflection;
  2. namespace SqlSugar
  3. {
  4. public class EntityColumnInfo
  5. {
  6. public PropertyInfo PropertyInfo { get; set; }
  7. public string PropertyName { get; set; }
  8. public string DbColumnName { get; set; }
  9. public string OldDbColumnName { get; set; }
  10. public int Length { get; set; }
  11. public string ColumnDescription { get; set; }
  12. public string DefaultValue { get; set; }
  13. public bool IsNullable { get; set; }
  14. public bool IsIdentity { get; set; }
  15. public bool IsPrimarykey { get; set; }
  16. public string EntityName { get; set; }
  17. public string DbTableName { get; set; }
  18. public bool IsIgnore { get; set; }
  19. public string DataType { get; set; }
  20. public int DecimalDigits { get; set; }
  21. public string OracleSequenceName { get; set; }
  22. public bool IsOnlyIgnoreInsert { get; set; }
  23. }
  24. }