using OASystem.Domain.Attributes; using OASystem.Domain.Entities.Resource; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.Resource { public class LocalGuideDataView : Res_LocalGuideData { } public class QueryLocalGuideSelectView { public int Id { get; set; } [Encrypted] public string UnitArea { get; set; } } public class LocalGuideDetailDataView { public int Id { get; set; } /// /// 导游地接的类型:0公司1私人 /// public int StaffType { get; set; } /// /// 服务评分 /// public int Score { get; set; } /// /// 区域 /// [Encrypted] public string UnitArea { get; set; } /// /// 公司名称 /// [Encrypted] public string UnitName { get; set; } /// /// 地址 /// [Encrypted] public string Address { get; set; } /// /// 联系人 /// [Encrypted] public string Contact { get; set; } /// /// 联系人手机号 /// [Encrypted] public string ContactTel { get; set; } /// /// 联系人邮箱 /// [Encrypted] public string ContactEmail { get; set; } /// /// 联系人传真 /// [Encrypted] public string ContactFax { get; set; } /// /// 其他信息 /// [Encrypted] public string OtherInfo { get; set; } /// /// 着装得体 /// A B C 选择 /// [Encrypted] public string SuitScore { get; set; } /// /// 服务意识强度 /// A B C 选择 /// [Encrypted] public string ServeScore { get; set; } /// /// 讲解水平专业 /// A B C 选择 /// [Encrypted] public string TalkProScore { get; set; } /// /// 时间概念强度 /// A B C 选择 /// [Encrypted] public string TimeScore { get; set; } /// /// 配合能力强,服从安排 /// A B C 选择 /// [Encrypted] public string FitScore { get; set; } /// /// 应变能力强 /// A B C 选择 /// [Encrypted] public string StrainScore { get; set; } /// /// 当地语言和中文表达流畅 /// A B C 选择 /// [Encrypted] public string LocalAndChineseScore { get; set; } } }