Grp_AirPrice.cs 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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_AirPrice")]
  12. public class Grp_AirPrice:EntityBase
  13. {
  14. /// <summary>
  15. /// 团组Id
  16. /// </summary>
  17. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  18. public int DiId { get; set; }
  19. /// <summary>
  20. /// 机票黑屏代码、询价表Id
  21. /// </summary>
  22. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  23. public int AiId { get; set; }
  24. /// <summary>
  25. /// 舱位编码
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  28. public string CabinCode { get; set; }
  29. /// <summary>
  30. /// 出票前单人票价
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  33. public decimal SinglePrice { get; set; }
  34. /// <summary>
  35. /// 币种
  36. /// </summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  38. public string SingleCurency { get; set; }
  39. /// <summary>
  40. /// 人数
  41. /// </summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  43. public int Count { get; set; }
  44. /// <summary>
  45. /// 出票前总票价
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10, 2)")]
  48. public decimal TotalPrice { get; set; }
  49. /// <summary>
  50. /// 币种
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  53. public string TotalCurency { get; set; }
  54. /// <summary>
  55. /// 是否值机0否1是
  56. /// </summary>
  57. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  58. public int IsCheck { get; set; }
  59. /// <summary>
  60. /// 是否选座0否1是
  61. /// </summary>
  62. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  63. public int IsSeat { get; set; }
  64. /// <summary>
  65. /// 是否购买行李0否1是
  66. /// </summary>
  67. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  68. public int IsPackage { get; set; }
  69. /// <summary>
  70. /// 是否行李直挂0否1是
  71. /// </summary>
  72. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  73. public int IsBag { get; set; }
  74. /// <summary>
  75. /// 报价说明0否1是
  76. /// </summary>
  77. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  78. public string PriceRemark { get; set; }
  79. }
  80. }