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