DbColumnInfoInput.cs 459 B

12345678910111213141516171819202122
  1. namespace Admin.NET.Core.Service;
  2. public class DbColumnInfoInput
  3. {
  4. public string TableName { get; set; }
  5. public string DbColumnName { get; set; }
  6. public string DataType { get; set; }
  7. public int Length { get; set; }
  8. public string ColumnDescription { get; set; }
  9. public int IsNullable { get; set; }
  10. public int IsIdentity { get; set; }
  11. public int IsPrimarykey { get; set; }
  12. public int DecimalDigits { get; set; }
  13. }