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