Grp_OrderPreItem.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. /// 团组下单前信息Item
  10. /// </summary>
  11. [SugarTable("Grp_OrderPreItem", "团组下单前信息Item")]
  12. public class Grp_OrderPreItem : EntityBase
  13. {
  14. /// <summary>
  15. /// 团组下单前信息Id
  16. /// </summary>
  17. [SugarColumn(ColumnName = "ParentId", ColumnDescription = "团组下单前信息Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  18. public int ParentId { get; set; }
  19. /// <summary>
  20. /// 字段Id
  21. /// </summary>
  22. [SugarColumn(ColumnName = "FormTempId", ColumnDescription = "Temp字段Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
  23. public int FormTempId { get; set; }
  24. /// <summary>
  25. /// 存储值
  26. /// </summary>
  27. [SugarColumn(ColumnName = "Value", ColumnDescription = "存储值", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")]
  28. public string Value { get; set; }
  29. }
  30. }