using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
    /// 
    /// OP行程单数据
    /// 
    public class Grp_TravelList: EntityBase
    {
        /// 
        ///  团组ID
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Diid { get; set; }
        /// 
        ///  天数
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Days { get; set; }
        /// 
        ///  日期
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
        public string Date { get; set; }
        /// 
        ///  星期
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
        public string WeekDay { get; set; }
        /// 
        ///  当日第1个交通工具
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
        public string Traffic_First { get; set; }
        /// 
        ///   当日第2个交通工具
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "Varchar(100)")]
        public string Traffic_Second { get; set; }
        /// 
        ///  行程       
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "nvarchar(MAX)")]
        public string Trip { get; set; }
        /// 
        /// 区分属于第几次保存
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Diffgroup { get; set; }
        /// 
        /// 最终确定选择项
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Issel { get; set; }
    }
}