using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 车/导游地接预订详细类 /// public class Grp_CarTouristGuideGroundReservationsContent:EntityBase { /// /// 团组外键编号 /// [SugarColumn(IsNullable =true,ColumnDataType ="int")] public int DiId { get; set; } /// /// 车/导游地接预订外键编号 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CTGGRId { get; set; } /// /// 费用项目明细 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int SId { get; set; } /// /// 金额 /// [SugarColumn(IsNullable = true, ColumnDataType = "decimal(18,2)")] public decimal Price { get; set; } /// /// 费用明细 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string PriceContent { get; set; } /// /// 币种 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int Currency { get; set; } /// /// 费用日期 /// [SugarColumn(ColumnDescription = "费用日期", IsNullable = true, ColumnDataType = "DateTime")] public DateTime? DatePrice { get; set; } /// /// 数量 /// [SugarColumn(ColumnDescription = "数量", IsNullable = true, ColumnDataType = "int")] public int Count { get; set; } /// /// 单位 /// [SugarColumn(ColumnDescription = "单位", IsNullable = true, ColumnDataType = "int")] public int Units { get; set; } } }