using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 团组下单前信息Item /// [SugarTable("Grp_OrderPreItem", "团组下单前信息Item")] public class Grp_OrderPreItem : EntityBase { /// /// 团组下单前信息Id /// [SugarColumn(ColumnName = "ParentId", ColumnDescription = "团组下单前信息Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")] public int ParentId { get; set; } /// /// 字段Id /// [SugarColumn(ColumnName = "FormTempId", ColumnDescription = "Temp字段Id", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "int")] public int FormTempId { get; set; } /// /// 存储值 /// [SugarColumn(ColumnName = "Value", ColumnDescription = "存储值", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(300)")] public string Value { get; set; } } }