using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 接团客户名单 /// 关联表 /// 关联 团组信息 客户资料库 /// [SugarTable("Grp_TourClientList")] public class Grp_TourClientList : EntityBase { /// /// 团组Id(团组信息表) /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 客户Id(客户资料表) /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ClientId { get; set; } /// /// 舱位类型Id (数据表Id) /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int ShippingSpaceTypeId { get; set; } /// /// 舱位特殊需求 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string? ShippingSpaceSpecialNeeds { get; set; } /// /// 酒店特殊需求 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string? HotelSpecialNeeds { get; set; } /// /// 餐食特殊需求 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")] public string? MealSpecialNeeds { get; set; } /// /// 是否陪同 /// 1 否 2 是 /// 默认:1 /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int IsAccompany { get; set; } = 1; } }