using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models { /// /// 导游资料 /// public class TouristGuideGroundData { int id; /// /// 主键编号 /// public int Id { get { return id; } set { id = value; } } /// /// 导游地接的类型:公司或者私人 /// public string StaffType { get; set; } string unitArea; /// /// 单位地区 /// public string UnitArea { get { return unitArea; } set { unitArea = value; } } string unitName; /// /// 单位名称 /// public string UnitName { get { return unitName; } set { unitName = value; } } string address; /// /// 单位地址 /// public string Address { get { return address; } set { address = value; } } string contact; /// /// 联系人 /// public string Contact { get { return contact; } set { contact = value; } } string tel; /// /// 联系电话 /// public string Tel { get { return tel; } set { tel = value; } } string email; /// /// 电子邮箱 /// public string Email { get { return email; } set { email = value; } } string fax; /// /// 传真号码 /// public string Fax { get { return fax; } set { fax = value; } } string otherInformation; /// /// 其他信息 /// public string OtherInformation { get { return otherInformation; } set { otherInformation = value; } } int companyOrGuide; /// /// 车公司或导游地接 /// public int CompanyOrGuide { get { return companyOrGuide; } set { companyOrGuide = value; } } int score; /// /// 服务评分 /// public int Score { get { return score; } set { score = value; } } /// /// 着装得体 /// public string SuitScore; /// /// 服务意识强 /// public string ServeScore; /// /// 讲解水平专业 /// public string TalkProScore; /// /// 时间概念强 /// public string TimeScore; /// /// 配合能力强,服从安排 /// public string FitScore; /// /// 应变能力强 /// public string StrainScore; /// /// 当地语言和中文表达流畅 /// public string LocalAndChineseScore; int operators; /// /// 操作人 /// public int Operators { get { return operators; } set { operators = value; } } string operatorsDate; /// /// 操作时间 /// public string OperatorsDate { get { return operatorsDate; } set { operatorsDate = value; } } int isDel; /// /// 删除标识 /// public int IsDel { get { return isDel; } set { isDel = value; } } } }