Grp_ApprovalTravel.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Entities.Groups
  7. {
  8. /// <summary>
  9. /// 报批行程表
  10. /// </summary>
  11. public class Grp_ApprovalTravel:EntityBase
  12. {
  13. /// <summary>
  14. /// 团组ID
  15. /// </summary>
  16. [SugarColumn(IsNullable = true, ColumnDataType = "int")]
  17. public int Diid { get; set; }
  18. /// <summary>
  19. /// 日期
  20. /// </summary>
  21. [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
  22. public string Date { get; set; }
  23. ///// <summary>
  24. ///// 时刻
  25. ///// </summary>
  26. //[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
  27. //public string Time { get; set; }
  28. ///// <summary>
  29. ///// 行程详情
  30. ///// </summary>
  31. //[SugarColumn(IsNullable = true, ColumnDataType = "varchar(500)")]
  32. //public string Detail { get; set; }
  33. }
  34. }