ptBaseSuppinfo.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace wms.sqlsugar.model.pt
  6. {
  7. [Tenant("pt")]
  8. [SugarTable("Base_SuppInfo")]
  9. public partial class ptBaseSuppinfo : BaseModel
  10. {
  11. /// <summary>
  12. /// WarehouseId
  13. /// </summary>
  14. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  15. public long WarehouseId { get; set; }
  16. /// <summary>
  17. /// IsStop
  18. /// </summary>
  19. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  20. public int IsStop { get; set; }
  21. /// <summary>
  22. /// Code
  23. /// </summary>
  24. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  25. public string Code { get; set; }
  26. /// <summary>
  27. /// Name
  28. /// </summary>
  29. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  30. public string Name { get; set; }
  31. /// <summary>
  32. /// Country
  33. /// </summary>
  34. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  35. public string Country { get; set; }
  36. /// <summary>
  37. /// City
  38. /// </summary>
  39. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  40. public string City { get; set; }
  41. /// <summary>
  42. /// Ctiyry
  43. /// </summary>
  44. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  45. public string Ctiyry { get; set; }
  46. /// <summary>
  47. /// ContactWho
  48. /// </summary>
  49. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  50. public string ContactWho { get; set; }
  51. /// <summary>
  52. /// PostalCode
  53. /// </summary>
  54. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  55. public string PostalCode { get; set; }
  56. /// <summary>
  57. /// Wechat
  58. /// </summary>
  59. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  60. public string Wechat { get; set; }
  61. /// <summary>
  62. /// Email
  63. /// </summary>
  64. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  65. public string Email { get; set; }
  66. /// <summary>
  67. /// Fax
  68. /// </summary>
  69. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  70. public string Fax { get; set; }
  71. /// <summary>
  72. /// Tel
  73. /// </summary>
  74. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  75. public string Tel { get; set; }
  76. /// <summary>
  77. /// Mobile
  78. /// </summary>
  79. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = true)]
  80. public string Mobile { get; set; }
  81. /// <summary>
  82. /// Address
  83. /// </summary>
  84. [SugarColumn(ColumnDataType = "nvarchar", Length = 200, IsNullable = false)]
  85. public string Address { get; set; }
  86. }
  87. }