Air_TicketBlackCode.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.Resource
  7. {
  8. /// <summary>
  9. /// 机票黑屏代码
  10. /// </summary>
  11. [SugarTable("Air_TicketBlackCode")]
  12. public class Air_TicketBlackCode: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(800)")]
  23. public string LeaveCode { get; set; }
  24. /// <summary>
  25. /// 黑屏代码
  26. /// </summary>
  27. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]
  28. public string BlackCode { get; set; }
  29. /// <summary>
  30. /// 黑屏代码
  31. /// </summary>
  32. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(800)")]
  33. public string ReturnCode { get; set; }
  34. /// <summary>
  35. /// 报价
  36. /// <summary>
  37. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  38. public string Price { get; set; }
  39. /// <summary>
  40. /// 最新报价
  41. /// <summary>
  42. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
  43. public string NowPrice { get; set; }
  44. /// <summary>
  45. /// 公务舱单价
  46. /// </summary>
  47. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  48. public decimal BCPrice { get; set; }
  49. /// <summary>
  50. ///经济舱单价
  51. /// </summary>
  52. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  53. public decimal ECPrice { get; set; }
  54. }
  55. }