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.

22 lines
767 B

2 years ago
  1. using System;
  2. namespace SqlSugar
  3. {
  4. public class DbColumnInfo
  5. {
  6. public string TableName { get; set; }
  7. public int TableId { get; set; }
  8. public string DbColumnName { get; set; }
  9. public string PropertyName { get; set; }
  10. public string DataType { get; set; }
  11. public Type PropertyType { get; set; }
  12. public int Length { get; set; }
  13. public string ColumnDescription { get; set; }
  14. public string DefaultValue { get; set; }
  15. public bool IsNullable { get; set; }
  16. public bool IsIdentity { get; set; }
  17. public bool IsPrimarykey { get; set; }
  18. public object Value { get; set; }
  19. public int DecimalDigits { get; set; }
  20. public int Scale { get; set; }
  21. }
  22. }