using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 车兼导游 /// public class CarGuides { /// /// 编号 /// public int Id { get; set; } /// /// 国家 /// 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 string Remark { get; set; } /// /// 操作员工编号 /// public int Oper { get; set; } /// /// 操作时间 /// public string OpDate { get; set; } /// /// 删除标识 /// public int Isdel { get; set; } } }