TbField.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbField
  6. {
  7. public string FieldId { get; set; } = null!;
  8. public string TableId { get; set; } = null!;
  9. public string FieldName { get; set; } = null!;
  10. public string Prcname { get; set; } = null!;
  11. public int SeqNo { get; set; }
  12. public string FieldType { get; set; } = null!;
  13. public int FieldSize { get; set; }
  14. public int Required { get; set; }
  15. public int IsPrimary { get; set; }
  16. public int IsCond { get; set; }
  17. public int IsRef { get; set; }
  18. public string? RefTable { get; set; }
  19. public string? RefTableAlias { get; set; }
  20. public string? RefCodeField { get; set; }
  21. public string? RefNameField { get; set; }
  22. public int DispWidth { get; set; }
  23. public string? CheckValue { get; set; }
  24. public string? DefaultValue { get; set; }
  25. public string? Hint { get; set; }
  26. public int CanStat { get; set; }
  27. public int? ReadOnly { get; set; }
  28. public int ShowOnAdd { get; set; }
  29. public int ShowOnEdit { get; set; }
  30. public int ShowOnBrw { get; set; }
  31. public int ShowOnQry { get; set; }
  32. public string? ColorMode { get; set; }
  33. public string? FormatStr { get; set; }
  34. public string? GroupName { get; set; }
  35. public int IsName { get; set; }
  36. public virtual TbTable Table { get; set; } = null!;
  37. }
  38. }