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