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