using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组公共需求表 /// [SugarTable("Grp_DeleClientNeeds")] public class Grp_DeleClientNeeds:EntityBase { /// /// 团组表id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 酒店名称 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string HotelName { get; set; } /// /// 酒店地址 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(200)")] public string HotelAddress { get; set; } /// /// 酒店星级 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")] public string HotelStarRank { get; set; } /// /// 酒店其他需求 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string HotelNeedRemark { get; set; } /// /// 客户喜好舱位 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string CabinName { get; set; } /// /// 飞机其他需求备注 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string CabinNeedRemark { get; set; } /// /// 类型表ID /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int CarType { get; set; } /// /// 车其他需求备注 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string CarNeedRemark { get; set; } /// /// 用餐需求备注 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string FoodNeedRemark { get; set; } } }