using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
///
/// 车/导游地接预订费用表
///
[SugarTable("Grp_CarTouristGuideGroundReservations")]
public class Grp_CarTouristGuideGroundReservations : EntityBase
{
///
/// 团组外键编号
///
[SugarColumn(IsNullable =true,ColumnDataType ="int")]
public int DiId { get; set; }
///
/// 地接地区
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string Area { get; set; }
///
/// 服务公司
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string ServiceCompany { get; set; }
///
/// 服务导游
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
public string ServiceGuide { get; set; }
///
/// 导游地接联系电话
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
public string ServiceTel { get; set; }
///
/// Bus名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")]
public string BusName { get; set; }
///
/// Bus描述
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
public string BusDescription { get; set; }
///
/// 车公司联系电话
///
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(30)")]
public string BusTel { get; set; }
///
/// 服务时间起
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
public string ServiceStartTime { get; set; }
///
/// 服务时间止
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(80)")]
public string ServiceEndTime { get; set; }
///
/// 服务描述
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
public string ServiceDescription { get; set; }
///
/// 服务报价
///
[SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")]
public decimal ServiceQuotedPrice { get; set; }
///
/// 币种(设置数据外键编号)
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int CId { get; set; }
///
/// 报价说明
///
[SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(1000)")]
public string QuotedPriceExplanation { get; set; }
///
/// 公转私转标识
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int OrbitalPrivateTransfer{get;set; }
///
/// 选中的复选框
///
[SugarColumn(IsNullable = true, ColumnDescription = "选中的复选框", ColumnDataType = "nvarchar(1000)")]
public string SelectCheck { get; set; }
///
/// 费用类型
///
public int PriceType { get; set; }
///
/// 费用名称
///
public string PriceName { get; set; }
///
/// 转换币种
///
public int toCurr { get; set; }
///
/// 汇率
///
public decimal Rate { get; set; }
}
}