using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 司兼导 /// public class Grp_CarGuides:EntityBase { /// /// 国家 /// public string Country { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 服务类型 /// public string ServiceType { get; set; } /// /// 车类型 /// public string CarType { get; set; } /// /// 用车报价 /// public string Offer { get; set; } /// /// 司兼导费用 /// public string CGCost { get; set; } /// /// 用车时长 /// public string RuningTime { get; set; } /// /// 车超时费用/时 /// public string OvertimeFee { get; set; } /// /// 司兼导超时费/时 /// public string CGOvertimeFee { get; set; } /// /// 币种 /// public string Currency { get; set; } } /// /// 导游 /// public class Grp_GuidesInfo : EntityBase { /// /// 国家 /// public string Country { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 导游服务类型 /// public string ServiceType { get; set; } /// /// 工作时间 /// public string When { get; set; } /// /// 导游工资 /// public string Price { get; set; } /// /// 翻译工资 /// public string TranslationPrice { get; set; } /// /// 超时费用 /// public string OvertimeFee { get; set; } /// /// 币种 /// public string Currency { get; set; } } /// /// 车数据 /// public class Grp_CarInfo : EntityBase { /// /// 国家 /// public string Country { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 车类型 /// public string CarType { get; set; } /// /// 服务类型 /// public string ServiceType { get; set; } /// /// 用车时间 /// public string When { get; set; } /// /// 价格 /// public string Price { get; set; } /// /// 币种 /// public string Currency { get; set; } /// /// 超时费用 /// public string OvertimeFee { get; set; } } /// /// 景点类 /// public class Grp_ScenicSpotInfo : EntityBase { /// /// 国家 /// public string Country { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 景点 /// public string ScenicSpot { get; set; } /// /// 景点项目描述 /// public string ScenicSpotDetail { get; set; } /// /// 景点价格 /// public float Price { get; set; } /// /// 币种 /// public string Currency { get; set; } /// /// 汇率 /// public float Rate { get; set; } /// /// 景点地址 /// public string Address { get; set; } } }