Grp_OrderPreInfo.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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. [SqlSugar.SugarTable("Grp_OrderPreInfo", "团组下单前信息")]
  12. public class Grp_OrderPreInfo:EntityBase
  13. {
  14. /// <summary>
  15. /// 正式团组Id
  16. /// </summary>
  17. [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  18. public int GroupId { get; set; }
  19. /// <summary>
  20. /// 类型
  21. /// </summary>
  22. [SugarColumn(ColumnName = "Type", ColumnDescription = "团组下单类型", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  23. public int Type { get; set; }
  24. /// <summary>
  25. /// 团组单位
  26. /// </summary>
  27. [SugarColumn(ColumnName = "Unit", ColumnDescription = "团组单位", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  28. public string Unit { get; set; }
  29. /// <summary>
  30. /// 团组单位备注
  31. /// </summary>
  32. [SugarColumn(ColumnName = "UnitRmk", ColumnDescription = "团组单位备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  33. public string UnitRmk { get; set; }
  34. /// <summary>
  35. /// 出访国家(地、区)
  36. /// </summary>
  37. [SugarColumn(ColumnName = "VisitCountry", ColumnDescription = "出访国家(地、区)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  38. public string VisitCountry { get; set; }
  39. /// <summary>
  40. /// 出访国家(地、区)备注
  41. /// </summary>
  42. [SugarColumn(ColumnName = "VisitCountryRmk", ColumnDescription = "出访国家(地、区)备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  43. public string VisitCountryRmk { get; set; }
  44. /// <summary>
  45. /// 涉及城市
  46. /// </summary>
  47. [SugarColumn(ColumnName = "Urban", ColumnDescription = "涉及城市", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  48. public string Urban { get; set; }
  49. /// <summary>
  50. /// 涉及城市备注
  51. /// </summary>
  52. [SugarColumn(ColumnName = "UrbanRmk", ColumnDescription = "涉及城市备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  53. public string UrbanRmk { get; set; }
  54. /// <summary>
  55. /// 计划出访时间(天数)
  56. /// </summary>
  57. [SugarColumn(ColumnName = "VisitDays", ColumnDescription = "计划出访时间(天数)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  58. public int VisitDays { get; set; }
  59. /// <summary>
  60. /// 计划出访时间(天数)备注
  61. /// </summary>
  62. [SugarColumn(ColumnName = "VisitDaysRmk", ColumnDescription = "计划出访时间(天数)备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  63. public string VisitDaysRmk { get; set; }
  64. /// <summary>
  65. /// 计划出访人数
  66. /// </summary>
  67. [SugarColumn(ColumnName = "VisitPNum", ColumnDescription = "计划出访人数", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  68. public int VisitPNum { get; set; }
  69. /// <summary>
  70. /// 计划出访人数备注
  71. /// </summary>
  72. [SugarColumn(ColumnName = "VisitPNumRmk", ColumnDescription = "计划出访人数备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  73. public string VisitPNumRmk { get; set; }
  74. /// <summary>
  75. /// 航班信息
  76. /// </summary>
  77. [SugarColumn(ColumnName = "AirInfo", ColumnDescription = "航班信息", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  78. public string AirInfo { get; set; }
  79. /// <summary>
  80. /// 航班信息备注
  81. /// </summary>
  82. [SugarColumn(ColumnName = "AirInfoRmk", ColumnDescription = "航班信息备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  83. public string AirInfoRmk { get; set; }
  84. /// <summary>
  85. /// 行李尺寸
  86. /// </summary>
  87. [SugarColumn(ColumnName = "LugSize", ColumnDescription = "行李尺寸", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  88. public string LugSize { get; set; }
  89. /// <summary>
  90. /// 行李尺寸备注
  91. /// </summary>
  92. [SugarColumn(ColumnName = "LugSizeRmk", ColumnDescription = "行李尺寸备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  93. public string LugSizeRmk { get; set; }
  94. /// <summary>
  95. /// 酒店地址
  96. /// </summary>
  97. [SugarColumn(ColumnName = "HotelAddr", ColumnDescription = "酒店地址", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  98. public string HotelAddr { get; set; }
  99. /// <summary>
  100. /// 酒店地址备注
  101. /// </summary>
  102. [SugarColumn(ColumnName = "HotelAddrRmk", ColumnDescription = "酒店地址备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  103. public string HotelAddrRmk { get; set; }
  104. /// <summary>
  105. /// 车型有无要求
  106. /// </summary>
  107. [SugarColumn(ColumnName = "IsCarTypeReq", ColumnDescription = "有无车型要求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  108. public bool IsCarTypeReq { get; set; } = false;
  109. /// <summary>
  110. /// 车型有无要求备注
  111. /// </summary>
  112. [SugarColumn(ColumnName = "IsCarTypeReqRmk", ColumnDescription = "有无车型要求备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  113. public string IsCarTypeReqRmk { get; set; }
  114. /// <summary>
  115. /// 有无司导性别要求
  116. /// </summary>
  117. [SugarColumn(ColumnName = "IsGuideSexReq", ColumnDescription = "有无司导性别要求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  118. public bool IsGuideSexReq { get; set; } = false;
  119. /// <summary>
  120. /// 有无司导性别要求备注
  121. /// </summary>
  122. [SugarColumn(ColumnName = "IsGuideSexReqRmk", ColumnDescription = "有无司导性别要求备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  123. public string IsGuideSexReqRmk { get; set; }
  124. /// <summary>
  125. /// 其他增加信息
  126. /// </summary>
  127. [SugarColumn(ColumnName = "OtherInfoReq", ColumnDescription = "其他增加信息", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  128. public string OtherInfoReq { get; set; }
  129. /// <summary>
  130. /// 其他增加信息备注
  131. /// </summary>
  132. [SugarColumn(ColumnName = "OtherInfoRmk", ColumnDescription = "其他增加信息备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  133. public string OtherInfoRmk { get; set; }
  134. /// <summary>
  135. /// 客户自有公务信息(地址、联系人)
  136. /// </summary>
  137. [SugarColumn(ColumnName = "IsCustBiz", ColumnDescription = "客户自有公务信息(地址、联系人)", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  138. public bool IsCustBiz { get; set; } = false;
  139. /// <summary>
  140. /// 客户自有公务信息(地址、联系人)备注
  141. /// </summary>
  142. [SugarColumn(ColumnName = "IsCustBizRmk", ColumnDescription = "客户自有公务信息(地址、联系人)备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  143. public string IsCustBizRmk { get; set; }
  144. /// <summary>
  145. /// 是否已提供名单
  146. /// </summary>
  147. [SugarColumn(ColumnName = "IsListProvided", ColumnDescription = "是否已提供名单", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  148. public bool IsListProvided { get; set; } = false;
  149. /// <summary>
  150. /// 是否已提供名单备注
  151. /// </summary>
  152. [SugarColumn(ColumnName = "IsListProvidedRmk", ColumnDescription = "是否已提供名单备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  153. public string IsListProvidedRmk { get; set; }
  154. /// <summary>
  155. /// 航班选座需求
  156. /// </summary>
  157. [SugarColumn(ColumnName = "IsNeedSeat", ColumnDescription = "航班选座需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  158. public bool IsNeedSeat { get; set; } = false;
  159. /// <summary>
  160. /// 航班选座需求备注
  161. /// </summary>
  162. [SugarColumn(ColumnName = "IsNeedSeatRmk", ColumnDescription = "航班选座需求备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  163. public string IsNeedSeatRmk { get; set; }
  164. /// <summary>
  165. /// 酒店特殊需求
  166. /// </summary>
  167. [SugarColumn(ColumnName = "IsSpecialReq", ColumnDescription = "酒店特殊需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  168. public bool IsSpecialReq { get; set; } = false;
  169. /// <summary>
  170. /// 酒店特殊需求备注
  171. /// </summary>
  172. [SugarColumn(ColumnName = "IsSpecialReqRmk", ColumnDescription = "酒店特殊需求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  173. public string IsSpecialReqRmk { get; set; }
  174. /// <summary>
  175. /// 餐和超支需求(餐是否需要我们安排,超支怎么处理)
  176. /// </summary>
  177. [SugarColumn(ColumnName = "IsMealPlanOver", ColumnDescription = "餐和超支需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  178. public bool IsMealPlanOver { get; set; } = false;
  179. /// <summary>
  180. /// 餐和超支需求备注
  181. /// </summary>
  182. [SugarColumn(ColumnName = "IsMealPlanOverRmk", ColumnDescription = "餐和超支需求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  183. public string IsMealPlanOverRmk { get; set; }
  184. /// <summary>
  185. /// 超时和超支(超时和超支,客人现付还是境外签单回来结算)
  186. /// </summary>
  187. [SugarColumn(ColumnName = "OverTimeOverBudgetBil", ColumnDescription = "超时和超支", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  188. public string OverTimeOverBudgetBil { get; set; }
  189. /// <summary>
  190. /// 超时和超支 备注
  191. /// </summary>
  192. [SugarColumn(ColumnName = "OverTimeOverBudgetBilRmk", ColumnDescription = "超时和超支 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  193. public string OverTimeOverBudgetBilRmk { get; set; }
  194. /// <summary>
  195. /// 物资需求(物资(含wifi,备用金)要求及时间)要求及时间
  196. /// </summary>
  197. [SugarColumn(ColumnName = "MatReqTime", ColumnDescription = "物资需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  198. public string MatReqTime { get; set; }
  199. /// <summary>
  200. /// 物资需求(物资(含wifi,备用金)要求及时间) 备注
  201. /// </summary>
  202. [SugarColumn(ColumnName = "MatReqTimelRmk", ColumnDescription = "物资需求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  203. public string MatReqTimelRmk { get; set; }
  204. /// <summary>
  205. /// 景点需求(景点有无特别想去的,是否要安排讲解)
  206. /// </summary>
  207. [SugarColumn(ColumnName = "IsSpotLectReq", ColumnDescription = "景点需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  208. public bool IsSpotLectReq { get; set; } = false;
  209. /// <summary>
  210. /// 景点需求(景点有无特别想去的,是否要安排讲解) 备注
  211. /// </summary>
  212. [SugarColumn(ColumnName = "IsSpotLectReqRmk", ColumnDescription = "景点需求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  213. public string IsSpotLectReqRmk { get; set; }
  214. /// <summary>
  215. /// 出访任务内容
  216. /// </summary>
  217. [SugarColumn(ColumnName = "VisitTaskContent", ColumnDescription = "出访任务内容", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  218. public bool VisitTaskContent { get; set; } = false;
  219. /// <summary>
  220. /// 出访任务内容 备注
  221. /// </summary>
  222. [SugarColumn(ColumnName = "VisitTaskContentReqRmk", ColumnDescription = "出访任务内容 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  223. public string VisitTaskContentReqRmk { get; set; }
  224. /// <summary>
  225. /// 出访背景
  226. /// </summary>
  227. [SugarColumn(ColumnName = "IsVisitBack", ColumnDescription = "出访背景", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  228. public string IsVisitBack { get; set; }
  229. /// <summary>
  230. /// 出访背景 备注
  231. /// </summary>
  232. [SugarColumn(ColumnName = "IsVisitBackRmk", ColumnDescription = "出访背景 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  233. public string IsVisitBackRmk { get; set; }
  234. /// <summary>
  235. /// 客户自有参考材料
  236. /// </summary>
  237. [SugarColumn(ColumnName = "IsCustRefMat", ColumnDescription = "客户自有参考材料", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  238. public bool IsCustRefMat { get; set; }
  239. /// <summary>
  240. /// 客户自有参考材料 备注
  241. /// </summary>
  242. [SugarColumn(ColumnName = "IsCustRefMatRmk", ColumnDescription = "客户自有参考材料 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  243. public string IsCustRefMatRmk { get; set; }
  244. /// <summary>
  245. /// 客户自有项目(公务)资源
  246. /// </summary>
  247. [SugarColumn(ColumnName = "IsCustProjRes", ColumnDescription = "客户自有项目(公务)资源", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  248. public bool IsCustProjRes { get; set; }
  249. /// <summary>
  250. /// 客户自有项目(公务)资源 备注
  251. /// </summary>
  252. [SugarColumn(ColumnName = "IsCustProjResRmk", ColumnDescription = "客户自有项目(公务)资源 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  253. public string IsCustProjResRmk { get; set; }
  254. /// <summary>
  255. /// 其他特殊要求
  256. /// </summary>
  257. [SugarColumn(ColumnName = "IsOtherSpecialReq", ColumnDescription = "其他特殊要求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  258. public bool IsOtherSpecialReq { get; set; }
  259. /// <summary>
  260. /// 其他特殊要求 备注
  261. /// </summary>
  262. [SugarColumn(ColumnName = "IsOtherSpecialReqRmk", ColumnDescription = "其他特殊要求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  263. public string IsOtherSpecialReqRmk { get; set; }
  264. /// <summary>
  265. /// 公务需求(客人有无自己安排的公务(如有的话需要提供地址,涉及到是否市外用车))
  266. /// </summary>
  267. [SugarColumn(ColumnName = "IsGuestOwnBiz", ColumnDescription = "公务需求", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "bit")]
  268. public bool IsGuestOwnBiz { get; set; }
  269. /// <summary>
  270. /// 公务需求(客人有无自己安排的公务(如有的话需要提供地址,涉及到是否市外用车)) 备注
  271. /// </summary>
  272. [SugarColumn(ColumnName = "IsGuestOwnBizRmk", ColumnDescription = "公务需求 备注", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  273. public string IsGuestOwnBizRmk { get; set; }
  274. }
  275. }