using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { /// /// 导游地接数据 /// [SugarTable("Res_LocalGuideData")] public class Res_LocalGuideData : EntityBase { /// /// 区域 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string UnitArea { get; set; } /// /// 公司名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string UnitName { get; set; } /// /// 地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string Address { get; set; } /// /// 联系人 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string Contact { get; set; } /// /// 联系人手机号 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string ContactTel { get; set; } /// /// 联系人邮箱 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string ContactEmail { get; set; } /// /// 联系人传真 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string ContactFax { get; set; } /// /// 其他信息 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string OtherInfo { get; set; } /// /// 服务评分 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Score { get; set; } /// /// 着装得体 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string SuitScore { get; set; } /// /// 服务意识强度 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string ServeScore { get; set; } /// /// 讲解水平专业 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string TalkProScore { get; set; } /// /// 时间概念强度 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string TimeScore { get; set; } /// /// 配合能力强,服从安排 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string FitScore { get; set; } /// /// 应变能力强 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string StrainScore { get; set; } /// /// 当地语言和中文表达流畅 /// A B C 选择 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(10)")] public string LocalAndChineseScore { get; set; } } }