using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Resource { /// /// 团组数据 导游数据 /// public class Res_GuidesInfo:EntityBase { /// /// 国家 /// [SugarColumn(IsNullable = true,ColumnDataType = "varchar(50)")] public string Country { get; set; } /// /// 城市 /// [SugarColumn(IsNullable = true,ColumnDataType = "varchar(50)")] public string City { get; set; } /// ///导游服务类型 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")] public string ServiceType { get; set; } /// /// 工作时间 /// [SugarColumn(IsNullable = true,ColumnDataType = "int")] public int When { get; set; } /// /// 导游工资 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Price { get; set; } /// /// 翻译工资 /// [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")] public decimal TranslationPrice { get; set; } /// /// 超时费用 /// [SugarColumn(IsNullable = true,ColumnDataType = "decimal(10,2)")] public decimal OvertimeFee { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true,ColumnDataType = "varchar(10)")] public string Currency { get; set; } } }