using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core { /// /// 留学时间节点 /// [SugarTable("bus_studyabroad_timeaxis", "留学时间节点")] public class BusStudyabroadTimeAxis : DEntitySortBase { /// /// 入学时间Id /// [SugarColumn(ColumnDescription = "入学时间Id")] public int StartTimeAxis { get; set; } /// /// 国家 /// [SugarColumn(ColumnDescription = "国家ID")] public int CountryId { get; set; } /// /// 时间节点 /// [SugarColumn(ColumnDescription = "时间节点")] public string TimeNode { get; set; } /// /// 时间名称 /// [SugarColumn(ColumnDescription = "时间名称")] public string EventName { get; set; } /// /// 描述 /// [SugarColumn(ColumnDescription = "描述", Length = int.MaxValue)] public string Description { get; set; } } }