Res_CarGuides.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. /// 团组成本 司兼导资料表
  11. /// </summary>
  12. [SugarTable("Res_CarGuides")]
  13. public class Res_CarGuides : EntityBase
  14. {
  15. /// <summary>
  16. /// 国家
  17. /// </summary>
  18. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  19. public string Country { get; set; }
  20. /// <summary>
  21. /// 城市
  22. /// </summary>
  23. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  24. public string City { get; set; }
  25. /// <summary>
  26. /// 服务类型
  27. /// </summary>
  28. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  29. public string ServiceType { get; set; }
  30. /// <summary>
  31. /// 车类型
  32. /// </summary>
  33. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  34. public string CarType { get; set; }
  35. /// <summary>
  36. /// 用车报价
  37. /// </summary>
  38. [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
  39. public decimal Offer { get; set; }
  40. /// <summary>
  41. /// 司兼导费用
  42. /// </summary>
  43. [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
  44. public decimal CGCost { get; set; }
  45. /// <summary>
  46. /// 用车时长
  47. /// </summary>
  48. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  49. public int RuningTime { get; set; }
  50. /// <summary>
  51. /// 车超时费用/时
  52. /// </summary>
  53. [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")]
  54. public decimal OvertimeFee { get; set; }
  55. /// <summary>
  56. /// 司兼导超时费/时
  57. /// </summary>
  58. [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
  59. public decimal CGOvertimeFee { get; set; }
  60. /// <summary>
  61. /// 币种
  62. /// </summary>
  63. [SugarColumn(IsNullable = true,ColumnDataType = "varchar(10)")]
  64. public string Currency { get; set; }
  65. }
  66. }