using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Infrastructure.Domain; namespace Application.Domain.Entities { /// /// 教学计划 /// [Display(Name = "教学计划")] public class TeachingPlan : BaseEntity { [Display(Name = "入学时间")] public DateTime Start { get; set; } [Display(Name = "学制")] public int Years { get; set; } [Display(Name = "学位")] public string Degree { get; set; } [Display(Name = "就业方向")] public string Career { get; set; } [Display(Name = "专业")] public Guid MajorId { get; set; } public Major Major { get; set; } public List Semesters { get; set; } = new List(); } }