using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 餐厅信息 /// [SugarTable("Grp_RestaurantInfo", "餐厅信息")] public class Grp_RestaurantInfo : EntityBase { /// /// 团组Id /// [SugarColumn(ColumnDescription = "团组Id", IsNullable = true, ColumnDataType = "int")] public int GroupId { get; set; } /// /// 用餐日期(2024-12-31) /// [SugarColumn(ColumnDescription = "用餐日期(2024-12-31)", IsNullable = true, ColumnDataType = "varchar(30)")] public string Date { get; set; } /// /// 用餐开始时间(08:00) /// [SugarColumn(ColumnDescription = " 用餐开始时间(08:00)", IsNullable = true, ColumnDataType = "varchar(30)")] public string StartTime { get; set; } /// /// 用餐结束时间(10:00) /// [SugarColumn(ColumnDescription = " 用餐结束时间(10:00)", IsNullable = true, ColumnDataType = "varchar(30)")] public string EndTime { get; set; } /// /// 用餐类型(1:早餐; 2:午餐; 3:晚餐;) /// [SugarColumn(ColumnDescription = "用餐类型(1:早餐; 2:午餐; 3:晚餐;)", IsNullable = true, ColumnDataType = "int")] public int Type { get; set; } /// /// 餐厅名称 /// [SugarColumn(ColumnDescription = "餐厅名称", IsNullable = true, ColumnDataType = "nvarchar(200)")] public string Name { get; set; } /// /// 餐厅电话 /// [SugarColumn(ColumnDescription = "餐厅电话", IsNullable = true, ColumnDataType = "nvarchar(100)")] public string Tel { get; set; } /// /// 餐厅地址 /// [SugarColumn(ColumnDescription = "餐厅地址", IsNullable = true, ColumnDataType = "nvarchar(300)")] public string Address { get; set; } } }