DbColumnOutput.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. namespace Admin.NET.Core.Service;
  5. public class DbColumnOutput
  6. {
  7. public string TableName { get; set; }
  8. public int TableId { get; set; }
  9. public string DbColumnName { get; set; }
  10. public string PropertyName { get; set; }
  11. public string DataType { get; set; }
  12. public object PropertyType { get; set; }
  13. public int Length { get; set; }
  14. public string ColumnDescription { get; set; }
  15. public string DefaultValue { get; set; }
  16. public bool IsNullable { get; set; }
  17. public bool IsIdentity { get; set; }
  18. public bool IsPrimarykey { get; set; }
  19. public object Value { get; set; }
  20. public int DecimalDigits { get; set; }
  21. public int Scale { get; set; }
  22. public bool IsArray { get; set; }
  23. public bool IsJson { get; set; }
  24. public bool? IsUnsigned { get; set; }
  25. public int CreateTableFieldSort { get; set; }
  26. internal object SqlParameterDbType { get; set; }
  27. }