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.
23 lines
593 B
23 lines
593 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Infrastructure.Domain;
|
|
|
|
namespace Application.Domain.Entities
|
|
{
|
|
/// <summary>
|
|
/// 学期
|
|
/// </summary>
|
|
[Display(Name = "学期")]
|
|
public class Semester : BaseEntity
|
|
{
|
|
[Display(Name = "名称")]
|
|
public string Name { get; set; }
|
|
|
|
[Display(Name = "教学计划")]
|
|
public Guid PlanId { get; set; }
|
|
|
|
public TeachingPlan Plan { get; set; }
|
|
public List<SemesterCourse> Courses { get; set; } = new List<SemesterCourse>();
|
|
}
|
|
} |