You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
836 B
32 lines
836 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Infrastructure.Domain;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
/// <summary>
|
|
/// 教学计划
|
|
/// </summary>
|
|
[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<Semester> Semesters { get; set; } = new List<Semester>();
|
|
}
|
|
} |