50 lines
1.2 KiB
C#
50 lines
1.2 KiB
C#
|
|
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 留学时间节点
|
|
/// </summary>
|
|
[SugarTable("bus_studyabroad_timeaxis", "留学时间节点")]
|
|
public class BusStudyabroadTimeAxis : DEntitySortBase
|
|
{
|
|
|
|
/// <summary>
|
|
/// 入学时间Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "入学时间Id")]
|
|
public int StartTimeAxis { get; set; }
|
|
/// <summary>
|
|
/// 国家
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "国家ID")]
|
|
public int CountryId { get; set; }
|
|
/// <summary>
|
|
/// 时间节点
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "时间节点")]
|
|
public string TimeNode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "时间名称")]
|
|
public string EventName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "描述", Length = int.MaxValue)]
|
|
public string Description { get; set; }
|
|
|
|
|
|
}
|
|
}
|