DbColumnOutput.cs 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. namespace Admin.NET.Core.Service;
  2. public class DbColumnOutput
  3. {
  4. public string TableName { get; set; }
  5. public int TableId { get; set; }
  6. public string DbColumnName { get; set; }
  7. public string PropertyName { get; set; }
  8. public string DataType { get; set; }
  9. public object PropertyType { 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 object Value { get; set; }
  17. public int DecimalDigits { get; set; }
  18. public int Scale { get; set; }
  19. public bool IsArray { get; set; }
  20. public bool IsJson { get; set; }
  21. public bool? IsUnsigned { get; set; }
  22. public int CreateTableFieldSort { get; set; }
  23. internal object SqlParameterDbType { get; set; }
  24. }