using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组下单前信息 /// [SqlSugar.SugarTable("Grp_OrderPreInfo", "团组下单前信息")] public class Grp_OrderPreInfo:EntityBase { /// /// 名称 /// [SugarColumn(ColumnName = "Name", ColumnDescription = "Name", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")] public string Name { get; set; } /// /// 正式团组Id /// [SugarColumn(ColumnName = "GroupId", ColumnDescription = "团组Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")] public int GroupId { get; set; } /// /// 类型 /// [SugarColumn(ColumnName = "Type", ColumnDescription = "团组下单类型", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")] public int Type { get; set; } } }