Grp_OrderPreInfo.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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. [SqlSugar.SugarTable("Grp_OrderPreInfo", "团组下单前信息")]
  12. public class Grp_OrderPreInfo:EntityBase
  13. {
  14. /// <summary>
  15. /// 名称
  16. /// </summary>
  17. [SugarColumn(ColumnName = "Name", ColumnDescription = "Name", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]
  18. public string Name { get; set; }
  19. /// <summary>
  20. /// 正式团组Id
  21. /// </summary>
  22. [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  23. public int GroupId { get; set; }
  24. /// <summary>
  25. /// 类型
  26. /// </summary>
  27. [SugarColumn(ColumnName = "Type", ColumnDescription = "团组下单类型", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  28. public int Type { get; set; }
  29. }
  30. }