using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.Groups
{
    /// 
    /// 报批行程表
    /// 
    public class Grp_ApprovalTravel:EntityBase
    {
        /// 
        ///  团组ID
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int Diid { get; set; }
        /// 
        ///  日期
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
        public string Date { get; set; }
        ///// 
        /////   时刻
        ///// 
        //[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
        //public string Time { get; set; }
        ///// 
        /////  行程详情      
        ///// 
        //[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
        //public string Detail { get; set; }
    }
}