DbColumnInfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SqlSugar
  6. {
  7. public class DbColumnInfo
  8. {
  9. public string TableName { get; set; }
  10. public int TableId { get; set; }
  11. public string DbColumnName { get; set; }
  12. public string PropertyName { get; set; }
  13. public string DataType { get; set; }
  14. public string OracleDataType { get; set; }
  15. public Type PropertyType { get; set; }
  16. public int Length { get; set; }
  17. public string ColumnDescription { get; set; }
  18. public string DefaultValue { get; set; }
  19. public bool IsNullable { get; set; }
  20. public bool IsIdentity { get; set; }
  21. public bool IsPrimarykey { get; set; }
  22. public object Value { get; set; }
  23. public int DecimalDigits { get; set; }
  24. public int Scale { get; set; }
  25. public bool IsArray { get; set; }
  26. public bool IsJson { get; set; }
  27. public bool? IsUnsigned { get; set; }
  28. public int CreateTableFieldSort { get; set; }
  29. public bool InsertServerTime { get; set; }
  30. public string InsertSql { get; set; }
  31. public bool UpdateServerTime { get; set; }
  32. public string UpdateSql { get; set; }
  33. public object SqlParameterDbType { get; set; }
  34. }
  35. }