|
@@ -0,0 +1,29 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 团组下单信息
|
|
|
+ /// </summary>
|
|
|
+ [SqlSugar.SugarTable("Grp_OrderInfo","团组下单信息")]
|
|
|
+ public class Grp_OrderInfo:EntityBase
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 正式团组Id
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
|
|
|
+ public int GroupId { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 类型
|
|
|
+ /// </summary>
|
|
|
+ [SugarColumn(ColumnName = "Type", ColumnDescription = "团组下单类型", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")]
|
|
|
+ public int Type { get; set; }
|
|
|
+
|
|
|
+ public string Unit { get; set; }
|
|
|
+ }
|
|
|
+}
|