DbColumnInfoOutput.cs 747 B

123456789101112131415161718192021222324252627282930313233343536
  1. namespace Admin.NET.Core.Service;
  2. public class DbColumnInfoOutput
  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 int Length { get; set; }
  10. public string ColumnDescription { get; set; }
  11. public string DefaultValue { get; set; }
  12. public bool IsNullable { get; set; }
  13. public bool IsIdentity { get; set; }
  14. public bool IsPrimarykey { get; set; }
  15. public object Value { get; set; }
  16. public int DecimalDigits { get; set; }
  17. public int Scale { get; set; }
  18. public bool IsArray { get; set; }
  19. internal bool IsJson { get; set; }
  20. }