using System; namespace OASystem.Domain.Entities.Groups { /// /// 会务流程 /// [SugarTable("Grp_ConferenceProcedures")] public class Grp_ConferenceProcedures : EntityBase { /// /// 团组Id /// [SugarColumn(IsNullable = true, ColumnDataType = "int")] public int DiId { get; set; } /// /// 标题Id /// //[SugarColumn(IsNullable = true, ColumnDataType = "int")] //public int TitleId { get; set; } /// /// 标题 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string Title { get; set; } /// /// 时间安排 /// //[SugarColumn(IsNullable = true, ColumnDataType = "DateTime")] //public DateTime Date { get; set; } /// /// 时间安排内容 /// [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")] public string DataDetails { get; set; } /// /// 详细内容 /// public string Details { get; set; } } }