Res_CarInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. public class Res_CarInfo :EntityBase
  12. {
  13. /// <summary>
  14. /// 国家
  15. /// </summary>
  16. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  17. public string Country { get; set; }
  18. /// <summary>
  19. /// 城市
  20. /// </summary>
  21. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  22. public string City { get; set; }
  23. /// <summary>
  24. /// 服务类型
  25. /// </summary>
  26. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  27. public string ServiceType { get; set; }
  28. /// <summary>
  29. /// 车类型
  30. /// </summary>
  31. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  32. public string CarType { get; set; }
  33. /// <summary>
  34. /// 用车时长
  35. /// </summary>
  36. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  37. public int RuningTime { get; set; }
  38. /// <summary>
  39. /// 用车报价
  40. /// </summary>
  41. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  42. public decimal Price { get; set; }
  43. /// <summary>
  44. /// 车超时费用/时
  45. /// </summary>
  46. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  47. public decimal OvertimeFee { get; set; }
  48. /// <summary>
  49. /// 币种
  50. /// </summary>
  51. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")]
  52. public string Currency { get; set; }
  53. }
  54. }