Grp_OrderInfo.cs 901 B

123456789101112131415161718192021222324252627282930
  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_OrderInfo","团组下单信息")]
  12. public class Grp_OrderInfo:EntityBase
  13. {
  14. /// <summary>
  15. /// 正式团组Id
  16. /// </summary>
  17. [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  18. public int GroupId { get; set; }
  19. /// <summary>
  20. /// 类型
  21. /// </summary>
  22. [SugarColumn(ColumnName = "Type", ColumnDescription = "团组下单类型", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  23. public int Type { get; set; }
  24. public string Unit { get; set; }
  25. }
  26. }