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