Grp_CarTouristGuideGroundReservations.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 车/导游地接预订费用表
  10. /// </summary>
  11. [SugarTable("Grp_CarTouristGuideGroundReservations")]
  12. public class Grp_CarTouristGuideGroundReservations : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组外键编号
  16. /// </summary>
  17. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 地接地区
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  23. public string Area { get; set; }
  24. /// <summary>
  25. /// 服务公司
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  28. public string ServiceCompany { get; set; }
  29. /// <summary>
  30. /// 服务导游
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  33. public string ServiceGuide { get; set; }
  34. /// <summary>
  35. /// 导游地接联系电话
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  38. public string ServiceTel { get; set; }
  39. /// <summary>
  40. /// Bus名称
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  43. public string BusName { get; set; }
  44. /// <summary>
  45. /// Bus描述
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
  48. public string BusDescription { get; set; }
  49. /// <summary>
  50. /// 车公司联系电话
  51. /// </summary>
  52. ///
  53. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
  54. public string BusTel { get; set; }
  55. /// <summary>
  56. /// 服务时间起
  57. /// </summary>
  58. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
  59. public string ServiceStartTime { get; set; }
  60. /// <summary>
  61. /// 服务时间止
  62. /// </summary>
  63. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
  64. public string ServiceEndTime { get; set; }
  65. /// <summary>
  66. /// 服务描述
  67. /// </summary>
  68. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
  69. public string ServiceDescription { get; set; }
  70. /// <summary>
  71. /// 服务报价
  72. /// </summary>
  73. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
  74. public decimal ServiceQuotedPrice { get; set; }
  75. /// <summary>
  76. /// 币种(设置数据外键编号)
  77. /// </summary>
  78. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  79. public int CId { get; set; }
  80. /// <summary>
  81. /// 报价说明
  82. /// </summary>
  83. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
  84. public string QuotedPriceExplanation { get; set; }
  85. /// <summary>
  86. /// 公转私转标识
  87. /// </summary>
  88. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  89. public int OrbitalPrivateTransfer{get;set; }
  90. /// <summary>
  91. /// 选中的复选框
  92. /// </summary>
  93. [SugarColumn(IsNullable = true, ColumnDescription = "选中的复选框", ColumnDataType = "nvarchar(1000)")]
  94. public string SelectCheck { get; set; }
  95. /// <summary>
  96. /// 费用类型
  97. /// </summary>
  98. public int PriceType { get; set; }
  99. /// <summary>
  100. /// 费用名称
  101. /// </summary>
  102. public string PriceName { get; set; }
  103. /// <summary>
  104. /// 转换币种
  105. /// </summary>
  106. public int toCurr { get; set; }
  107. /// <summary>
  108. /// 汇率
  109. /// </summary>
  110. public decimal Rate { get; set; }
  111. }
  112. }