Res_CarGuides.cs 2.2 KB

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