Grp_CarTouristGuideGroundReservationsContent.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. public class Grp_CarTouristGuideGroundReservationsContent:EntityBase
  12. {
  13. /// <summary>
  14. /// 团组外键编号
  15. /// </summary>
  16. [SugarColumn(IsNullable =true,ColumnDataType ="int")]
  17. public int DiId { get; set; }
  18. /// <summary>
  19. /// 车/导游地接预订外键编号
  20. /// </summary>
  21. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  22. public int CTGGRId { get; set; }
  23. /// <summary>
  24. /// 费用项目明细
  25. /// </summary>
  26. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  27. public int SId { get; set; }
  28. /// <summary>
  29. /// 金额
  30. /// </summary>
  31. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
  32. public decimal Price { get; set; }
  33. /// <summary>
  34. /// 费用明细
  35. /// </summary>
  36. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  37. public string PriceContent { get; set; }
  38. /// <summary>
  39. /// 币种
  40. /// </summary>
  41. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  42. public int Currency { get; set; }
  43. /// <summary>
  44. /// 费用日期
  45. /// </summary>
  46. [SugarColumn(ColumnDescription = "费用日期", IsNullable = true, ColumnDataType = "DateTime")]
  47. public DateTime? DatePrice { get; set; }
  48. /// <summary>
  49. /// 数量
  50. /// </summary>
  51. [SugarColumn(ColumnDescription = "数量", IsNullable = true, ColumnDataType = "int")]
  52. public int Count { get; set; }
  53. /// <summary>
  54. /// 单位
  55. /// </summary>
  56. [SugarColumn(ColumnDescription = "单位", IsNullable = true, ColumnDataType = "int")]
  57. public int Units { get; set; }
  58. }
  59. }