| 1234567891011121314151617181920212223242526272829303132333435 | 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_OrderPreInfo", "团组下单前信息")]    public class Grp_OrderPreInfo:EntityBase    {        /// <summary>        /// 名称        /// </summary>        [SugarColumn(ColumnName = "Name", ColumnDescription = "Name", IsNullable = true, DefaultValue = "NULL", ColumnDataType = "varchar(120)")]        public string Name { get; set; }        /// <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; }    }}
 |