DbColumnOutput.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // 大名科技(天津)有限公司 版权所有
  2. //
  3. // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
  4. //
  5. // 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动
  6. //
  7. // 任何基于本项目二次开发而产生的一切法律纠纷和责任,均与作者无关
  8. namespace Admin.NET.Core.Service;
  9. public class DbColumnOutput
  10. {
  11. public string TableName { get; set; }
  12. public int TableId { get; set; }
  13. public string DbColumnName { get; set; }
  14. public string PropertyName { get; set; }
  15. public string DataType { get; set; }
  16. public object PropertyType { get; set; }
  17. public int Length { get; set; }
  18. public string ColumnDescription { get; set; }
  19. public string DefaultValue { get; set; }
  20. public bool IsNullable { get; set; }
  21. public bool IsIdentity { get; set; }
  22. public bool IsPrimarykey { get; set; }
  23. public object Value { get; set; }
  24. public int DecimalDigits { get; set; }
  25. public int Scale { get; set; }
  26. public bool IsArray { get; set; }
  27. public bool IsJson { get; set; }
  28. public bool? IsUnsigned { get; set; }
  29. public int CreateTableFieldSort { get; set; }
  30. internal object SqlParameterDbType { get; set; }
  31. }