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 = "NULL", ColumnDataType = "varchar(300)")]
        public string Value { get; set; }

    }
}