| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // 大名科技(天津)有限公司版权所有 电话:18020030720 QQ:515096995
- //
- // 此源代码遵循位于源代码树根目录中的 LICENSE 文件的许可证
- namespace Admin.NET.Core.Service;
- public class DbColumnOutput
- {
- public string TableName { get; set; }
- public int TableId { get; set; }
- public string DbColumnName { get; set; }
- public string PropertyName { get; set; }
- public string DataType { get; set; }
- public object PropertyType { get; set; }
- public int Length { get; set; }
- public string ColumnDescription { get; set; }
- public string DefaultValue { get; set; }
- public bool IsNullable { get; set; }
- public bool IsIdentity { get; set; }
- public bool IsPrimarykey { get; set; }
- public object Value { get; set; }
- public int DecimalDigits { get; set; }
- public int Scale { get; set; }
- public bool IsArray { get; set; }
- public bool IsJson { get; set; }
- public bool? IsUnsigned { get; set; }
- public int CreateTableFieldSort { get; set; }
- internal object SqlParameterDbType { get; set; }
- }
|