Grp_DeleClientNeeds.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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_DeleClientNeeds")]
  12. public class Grp_DeleClientNeeds:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组表id
  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(100)")]
  23. public string HotelName { get; set; }
  24. /// <summary>
  25. /// 酒店地址
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  28. public string HotelAddress { get; set; }
  29. /// <summary>
  30. /// 酒店星级
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
  33. public string HotelStarRank { get; set; }
  34. /// <summary>
  35. /// 酒店其他需求
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  38. public string HotelNeedRemark { get; set; }
  39. /// <summary>
  40. /// 客户喜好舱位
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  43. public string CabinName { get; set; }
  44. /// <summary>
  45. /// 飞机其他需求备注
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  48. public string CabinNeedRemark { get; set; }
  49. /// <summary>
  50. /// 类型表ID
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  53. public int CarType { get; set; }
  54. /// <summary>
  55. /// 车其他需求备注
  56. /// </summary>
  57. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  58. public string CarNeedRemark { get; set; }
  59. /// <summary>
  60. /// 用餐需求备注
  61. /// </summary>
  62. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  63. public string FoodNeedRemark { get; set; }
  64. }
  65. }