Grp_CarTouristGuideGroundReservations.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. ///
  59. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
  60. public string ServiceStartTime { get; set; }
  61. /// <summary>
  62. /// 服务时间止
  63. /// </summary>
  64. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
  65. public string ServiceEndTime { get; set; }
  66. /// <summary>
  67. /// 服务描述
  68. /// </summary>
  69. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
  70. public string ServiceDescription { get; set; }
  71. /// <summary>
  72. /// 服务报价
  73. /// </summary>
  74. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
  75. public decimal ServiceQuotedPrice { get; set; }
  76. /// <summary>
  77. /// 币种(设置数据外键编号)
  78. /// </summary>
  79. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  80. public int CId { get; set; }
  81. /// <summary>
  82. /// 报价说明
  83. /// </summary>
  84. [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
  85. public string QuotedPriceExplanation { get; set; }
  86. /// <summary>
  87. /// 公转私转标识
  88. /// </summary>
  89. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  90. public int OrbitalPrivateTransfer{get;set; }
  91. /// <summary>
  92. /// 选中的复选框
  93. /// </summary>
  94. [SugarColumn(IsNullable = true, ColumnDescription = "选中的复选框", ColumnDataType = "nvarchar(1000)")]
  95. public string SelectCheck { get; set; }
  96. }
  97. }