毕业审核:批次计算、缺失课程检查、人工复核、结果发布。 学位授予:毕业资格与 GPA 计算、人工调整、发布授予结果。 毕业离校:离校事项配置、责任角色分工、逐项办理及批次关闭。
2492 lines
87 KiB
C#
2492 lines
87 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Jiaowu.Api.Infrastructure.Persistence;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace Jiaowu.Api.Infrastructure.Persistence.Migrations.MySql
|
|
{
|
|
[DbContext(typeof(AppDbContext))]
|
|
[Migration("20260724092052_GraduationClearance")]
|
|
partial class GraduationClearance
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "10.0.10")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 64);
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.AcademicTerm", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("AcademicYear")
|
|
.IsRequired()
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateOnly>("EndDate")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<bool>("IsCurrent")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("Season")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateOnly>("StartDate")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("IsCurrent");
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("AcademicTerms");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.AdministrativeClass", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<string>("CounselorName")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<Guid?>("CounselorUserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Grade")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<Guid>("MajorId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("CounselorUserId");
|
|
|
|
b.HasIndex("MajorId");
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("AdministrativeClasses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Building", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("CampusId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CampusId");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Buildings");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Campus", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Address")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Campuses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Classroom", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("BuildingId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("Capacity")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Equipment")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<string>("RoomType")
|
|
.IsRequired()
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("BuildingId");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Classrooms");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.College", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid?>("CampusId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<string>("ShortName")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CampusId");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Colleges");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Course", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("AssessmentMethod")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<Guid>("CollegeId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<decimal>("Credits")
|
|
.HasPrecision(5, 2)
|
|
.HasColumnType("decimal(5,2)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("varchar(1000)");
|
|
|
|
b.Property<string>("EnglishName")
|
|
.HasMaxLength(150)
|
|
.HasColumnType("varchar(150)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<int>("LectureHours")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("Nature")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("PracticeHours")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("TotalHours")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("CollegeId", "Nature");
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Courses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseEnrollment", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("CourseSelectionOfferingId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("EnrolledAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime?>("WithdrawnAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CourseSelectionOfferingId", "StudentId")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("StudentId", "Status");
|
|
|
|
b.ToTable("CourseEnrollments");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionOffering", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("Capacity")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("CourseSelectionRoundId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<bool>("IsOpenToAll")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TeachingTaskId");
|
|
|
|
b.HasIndex("CourseSelectionRoundId", "TeachingTaskId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("CourseSelectionOfferings");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionRound", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AcademicTermId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("EndsAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<decimal>("MaxCredits")
|
|
.HasPrecision(6, 1)
|
|
.HasColumnType("decimal(6,1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime>("StartsAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("WithdrawalEndsAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AcademicTermId", "Status");
|
|
|
|
b.ToTable("CourseSelectionRounds");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumCourse", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("CourseId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("CurriculumModuleId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<int>("RecommendedSemester")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CourseId");
|
|
|
|
b.HasIndex("CurriculumModuleId", "CourseId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("CurriculumCourses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumModule", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("CurriculumPlanId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<decimal>("RequiredCredits")
|
|
.HasPrecision(6, 2)
|
|
.HasColumnType("decimal(6,2)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CurriculumPlanId", "Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("CurriculumModules");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumPlan", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("varchar(1000)");
|
|
|
|
b.Property<int>("EffectiveGrade")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("MajorId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<decimal>("TotalCredits")
|
|
.HasPrecision(6, 2)
|
|
.HasColumnType("decimal(6,2)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Version")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Status", "EffectiveGrade");
|
|
|
|
b.HasIndex("MajorId", "EffectiveGrade", "Version")
|
|
.IsUnique();
|
|
|
|
b.ToTable("CurriculumPlans");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.DegreeAwardBatch", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime?>("CalculatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("DegreeName")
|
|
.IsRequired()
|
|
.HasMaxLength(80)
|
|
.HasColumnType("varchar(80)");
|
|
|
|
b.Property<int>("GraduationYear")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<decimal>("MinimumGradePoint")
|
|
.HasPrecision(3, 2)
|
|
.HasColumnType("decimal(3,2)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GraduationYear", "Status");
|
|
|
|
b.ToTable("DegreeAwardBatches");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.DegreeAwardResult", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<decimal>("AverageGradePoint")
|
|
.HasPrecision(4, 2)
|
|
.HasColumnType("decimal(4,2)");
|
|
|
|
b.Property<int>("CalculatedConclusion")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Conclusion")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("DegreeAwardBatchId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("ExceptionReason")
|
|
.IsRequired()
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<Guid>("GraduationAuditResultId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<bool>("IsOverridden")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("ReviewComment")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("ReviewedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GraduationAuditResultId");
|
|
|
|
b.HasIndex("StudentId");
|
|
|
|
b.HasIndex("Conclusion", "IsOverridden");
|
|
|
|
b.HasIndex("DegreeAwardBatchId", "StudentId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("DegreeAwardResults");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamPlan", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AcademicTermId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AcademicTermId", "Status");
|
|
|
|
b.ToTable("ExamPlans");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamSession", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("ClassroomId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("EndsAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("ExamPlanId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime>("StartsAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClassroomId");
|
|
|
|
b.HasIndex("TeachingTaskId");
|
|
|
|
b.HasIndex("ExamPlanId", "StartsAt");
|
|
|
|
b.ToTable("ExamSessions");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamSessionInvigilator", b =>
|
|
{
|
|
b.Property<Guid>("ExamSessionId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("TeacherId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("ExamSessionId", "TeacherId");
|
|
|
|
b.HasIndex("TeacherId");
|
|
|
|
b.ToTable("ExamSessionInvigilators");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GradeRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("ExamStatus")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<decimal?>("FinalScore")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<decimal?>("GradePoint")
|
|
.HasPrecision(3, 1)
|
|
.HasColumnType("decimal(3,1)");
|
|
|
|
b.Property<Guid>("GradeSheetId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<decimal?>("MidtermScore")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(300)
|
|
.HasColumnType("varchar(300)");
|
|
|
|
b.Property<decimal?>("RegularScore")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<decimal?>("TotalScore")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GradeSheetId", "StudentId")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("StudentId", "TotalScore");
|
|
|
|
b.ToTable("GradeRecords");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GradeSheet", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<decimal>("FinalWeight")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<decimal>("MidtermWeight")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<decimal>("RegularWeight")
|
|
.HasPrecision(5, 1)
|
|
.HasColumnType("decimal(5,1)");
|
|
|
|
b.Property<string>("ReviewComment")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("ReviewedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime?>("SubmittedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Status");
|
|
|
|
b.HasIndex("TeachingTaskId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("GradeSheets");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationAuditBatch", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime?>("CalculatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("EnrollmentYear")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("GraduationYear")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Status");
|
|
|
|
b.HasIndex("GraduationYear", "EnrollmentYear");
|
|
|
|
b.ToTable("GraduationAuditBatches");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationAuditResult", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("CalculatedConclusion")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Conclusion")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid?>("CurriculumPlanId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<decimal>("EarnedCredits")
|
|
.HasPrecision(6, 2)
|
|
.HasColumnType("decimal(6,2)");
|
|
|
|
b.Property<int>("FailedCourseCount")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("GraduationAuditBatchId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<bool>("IsOverridden")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("MissingCourseNames")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("varchar(2000)");
|
|
|
|
b.Property<int>("PassedRequiredCourseCount")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("RequiredCourseCount")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<decimal>("RequiredCredits")
|
|
.HasPrecision(6, 2)
|
|
.HasColumnType("decimal(6,2)");
|
|
|
|
b.Property<string>("ReviewComment")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("ReviewedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("StudentStatusSnapshot")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CurriculumPlanId");
|
|
|
|
b.HasIndex("StudentId");
|
|
|
|
b.HasIndex("Conclusion", "IsOverridden");
|
|
|
|
b.HasIndex("GraduationAuditBatchId", "StudentId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("GraduationAuditResults");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceBatch", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime?>("ClosedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("GraduationYear")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GraduationYear", "Status");
|
|
|
|
b.ToTable("GraduationClearanceBatches");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceItem", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("GraduationClearanceBatchId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<bool>("IsRequired")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<string>("ResponsibleRole")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<string>("ResponsibleUnit")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GraduationClearanceBatchId", "Code")
|
|
.IsUnique();
|
|
|
|
b.ToTable("GraduationClearanceItems");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime?>("CompletedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid?>("CompletedByUserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid>("GraduationClearanceItemId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GraduationClearanceItemId", "StudentId")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("StudentId", "Status");
|
|
|
|
b.ToTable("GraduationClearanceRecords");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Major", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<Guid>("CollegeId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("DegreeType")
|
|
.IsRequired()
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("SchoolingYears")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("SortOrder")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("CollegeId");
|
|
|
|
b.HasIndex("IsEnabled", "SortOrder");
|
|
|
|
b.ToTable("Majors");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ScheduleEntry", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("ClassroomId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("DayOfWeek")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EndWeek")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<int>("PeriodCount")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("SchedulePlanId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("StartPeriod")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("StartWeek")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("WeekPattern")
|
|
.HasColumnType("int");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClassroomId");
|
|
|
|
b.HasIndex("TeachingTaskId");
|
|
|
|
b.HasIndex("SchedulePlanId", "DayOfWeek", "StartPeriod");
|
|
|
|
b.ToTable("ScheduleEntries");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.SchedulePlan", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AcademicTermId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Version")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AcademicTermId", "Status");
|
|
|
|
b.HasIndex("AcademicTermId", "Version")
|
|
.IsUnique();
|
|
|
|
b.ToTable("SchedulePlans");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Student", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AdministrativeClassId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateOnly?>("DateOfBirth")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<DateOnly>("EnrollmentDate")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<int>("EnrollmentYear")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Gender")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("varchar(50)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("StudentNumber")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid?>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("EnrollmentYear");
|
|
|
|
b.HasIndex("StudentNumber")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.HasIndex("AdministrativeClassId", "Status");
|
|
|
|
b.ToTable("Students");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.StudentStatusChange", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime?>("ApprovedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("OriginalStatus")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Reason")
|
|
.IsRequired()
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("varchar(1000)");
|
|
|
|
b.Property<string>("ReviewComment")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("ReviewedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("State")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("StudentId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("SubmittedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("TargetStatus")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("StudentId", "State");
|
|
|
|
b.ToTable("StudentStatusChanges");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Teacher", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("CollegeId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<int>("Gender")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateOnly?>("HireDate")
|
|
.HasColumnType("date");
|
|
|
|
b.Property<bool>("IsExternal")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("varchar(50)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<string>("Phone")
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("TeacherNumber")
|
|
.IsRequired()
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<string>("Title")
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid?>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TeacherNumber")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.HasIndex("CollegeId", "Status");
|
|
|
|
b.ToTable("Teachers");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTask", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AcademicTermId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("Capacity")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid>("CourseId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("EndWeek")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(120)
|
|
.HasColumnType("varchar(120)");
|
|
|
|
b.Property<string>("Notes")
|
|
.HasMaxLength(500)
|
|
.HasColumnType("varchar(500)");
|
|
|
|
b.Property<DateTime?>("PublishedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("StartWeek")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("Status")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("TaskNumber")
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("varchar(40)");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<int>("WeeklyHours")
|
|
.HasColumnType("int");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CourseId");
|
|
|
|
b.HasIndex("TaskNumber")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("AcademicTermId", "Status");
|
|
|
|
b.ToTable("TeachingTasks");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTaskClass", b =>
|
|
{
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("AdministrativeClassId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("TeachingTaskId", "AdministrativeClassId");
|
|
|
|
b.HasIndex("AdministrativeClassId");
|
|
|
|
b.ToTable("TeachingTaskClasses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTaskTeacher", b =>
|
|
{
|
|
b.Property<Guid>("TeachingTaskId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("TeacherId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<bool>("IsPrimary")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.HasKey("TeachingTaskId", "TeacherId");
|
|
|
|
b.HasIndex("TeacherId");
|
|
|
|
b.ToTable("TeachingTaskTeachers");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Identity.ApplicationRole", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<int>("DataScope")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName")
|
|
.IsUnique()
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
b.ToTable("AspNetRoles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Identity.ApplicationUser", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<Guid?>("CollegeId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("varchar(50)");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<DateTime?>("LastLoginAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("datetime");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("StaffNumber")
|
|
.HasMaxLength(30)
|
|
.HasColumnType("varchar(30)");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.HasColumnType("tinyint(1)");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("varchar(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
.IsUnique()
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
b.HasIndex("StaffNumber");
|
|
|
|
b.ToTable("AspNetUsers", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.System.AuditLog", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<DateTime>("CreatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<string>("IpAddress")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("varchar(64)");
|
|
|
|
b.Property<string>("Method")
|
|
.IsRequired()
|
|
.HasMaxLength(10)
|
|
.HasColumnType("varchar(10)");
|
|
|
|
b.Property<string>("Path")
|
|
.IsRequired()
|
|
.HasMaxLength(300)
|
|
.HasColumnType("varchar(300)");
|
|
|
|
b.Property<int>("StatusCode")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("UpdatedAt")
|
|
.HasColumnType("datetime(6)");
|
|
|
|
b.Property<Guid?>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("varchar(100)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("CreatedAt");
|
|
|
|
b.ToTable("AuditLogs");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetRoleClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("varchar(255)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasColumnType("varchar(255)");
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasColumnType("longtext");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AspNetUserLogins", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AspNetUserRoles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("char(36)");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("varchar(255)");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("varchar(255)");
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("longtext");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("AspNetUserTokens", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.AdministrativeClass", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", "CounselorUser")
|
|
.WithMany()
|
|
.HasForeignKey("CounselorUserId")
|
|
.OnDelete(DeleteBehavior.SetNull);
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Major", "Major")
|
|
.WithMany()
|
|
.HasForeignKey("MajorId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CounselorUser");
|
|
|
|
b.Navigation("Major");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Building", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Campus", "Campus")
|
|
.WithMany()
|
|
.HasForeignKey("CampusId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Campus");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Classroom", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Building", "Building")
|
|
.WithMany()
|
|
.HasForeignKey("BuildingId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Building");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.College", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Campus", "Campus")
|
|
.WithMany()
|
|
.HasForeignKey("CampusId")
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
|
|
b.Navigation("Campus");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Course", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.College", "College")
|
|
.WithMany()
|
|
.HasForeignKey("CollegeId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("College");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseEnrollment", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.CourseSelectionOffering", "CourseSelectionOffering")
|
|
.WithMany("Enrollments")
|
|
.HasForeignKey("CourseSelectionOfferingId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CourseSelectionOffering");
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionOffering", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.CourseSelectionRound", "CourseSelectionRound")
|
|
.WithMany("Offerings")
|
|
.HasForeignKey("CourseSelectionRoundId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany()
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CourseSelectionRound");
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionRound", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AcademicTerm", "AcademicTerm")
|
|
.WithMany()
|
|
.HasForeignKey("AcademicTermId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("AcademicTerm");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumCourse", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Course", "Course")
|
|
.WithMany()
|
|
.HasForeignKey("CourseId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.CurriculumModule", "CurriculumModule")
|
|
.WithMany("Courses")
|
|
.HasForeignKey("CurriculumModuleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Course");
|
|
|
|
b.Navigation("CurriculumModule");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumModule", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.CurriculumPlan", "CurriculumPlan")
|
|
.WithMany("Modules")
|
|
.HasForeignKey("CurriculumPlanId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CurriculumPlan");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumPlan", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Major", "Major")
|
|
.WithMany()
|
|
.HasForeignKey("MajorId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Major");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.DegreeAwardResult", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.DegreeAwardBatch", "DegreeAwardBatch")
|
|
.WithMany("Results")
|
|
.HasForeignKey("DegreeAwardBatchId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.GraduationAuditResult", "GraduationAuditResult")
|
|
.WithMany()
|
|
.HasForeignKey("GraduationAuditResultId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("DegreeAwardBatch");
|
|
|
|
b.Navigation("GraduationAuditResult");
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamPlan", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AcademicTerm", "AcademicTerm")
|
|
.WithMany()
|
|
.HasForeignKey("AcademicTermId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("AcademicTerm");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamSession", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Classroom", "Classroom")
|
|
.WithMany()
|
|
.HasForeignKey("ClassroomId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.ExamPlan", "ExamPlan")
|
|
.WithMany("Sessions")
|
|
.HasForeignKey("ExamPlanId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany()
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Classroom");
|
|
|
|
b.Navigation("ExamPlan");
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamSessionInvigilator", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.ExamSession", "ExamSession")
|
|
.WithMany("Invigilators")
|
|
.HasForeignKey("ExamSessionId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Teacher", "Teacher")
|
|
.WithMany()
|
|
.HasForeignKey("TeacherId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ExamSession");
|
|
|
|
b.Navigation("Teacher");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GradeRecord", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.GradeSheet", "GradeSheet")
|
|
.WithMany("Records")
|
|
.HasForeignKey("GradeSheetId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("GradeSheet");
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GradeSheet", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany()
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationAuditResult", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.CurriculumPlan", "CurriculumPlan")
|
|
.WithMany()
|
|
.HasForeignKey("CurriculumPlanId")
|
|
.OnDelete(DeleteBehavior.SetNull);
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.GraduationAuditBatch", "GraduationAuditBatch")
|
|
.WithMany("Results")
|
|
.HasForeignKey("GraduationAuditBatchId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CurriculumPlan");
|
|
|
|
b.Navigation("GraduationAuditBatch");
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceItem", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.GraduationClearanceBatch", "GraduationClearanceBatch")
|
|
.WithMany("Items")
|
|
.HasForeignKey("GraduationClearanceBatchId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("GraduationClearanceBatch");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceRecord", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.GraduationClearanceItem", "GraduationClearanceItem")
|
|
.WithMany("Records")
|
|
.HasForeignKey("GraduationClearanceItemId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("GraduationClearanceItem");
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Major", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.College", "College")
|
|
.WithMany()
|
|
.HasForeignKey("CollegeId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("College");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ScheduleEntry", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Classroom", "Classroom")
|
|
.WithMany()
|
|
.HasForeignKey("ClassroomId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.SchedulePlan", "SchedulePlan")
|
|
.WithMany("Entries")
|
|
.HasForeignKey("SchedulePlanId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany()
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Classroom");
|
|
|
|
b.Navigation("SchedulePlan");
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.SchedulePlan", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AcademicTerm", "AcademicTerm")
|
|
.WithMany()
|
|
.HasForeignKey("AcademicTermId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("AcademicTerm");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Student", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AdministrativeClass", "AdministrativeClass")
|
|
.WithMany("Students")
|
|
.HasForeignKey("AdministrativeClassId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.SetNull);
|
|
|
|
b.Navigation("AdministrativeClass");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.StudentStatusChange", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Student", "Student")
|
|
.WithMany()
|
|
.HasForeignKey("StudentId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Student");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.Teacher", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.College", "College")
|
|
.WithMany()
|
|
.HasForeignKey("CollegeId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.SetNull);
|
|
|
|
b.Navigation("College");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTask", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AcademicTerm", "AcademicTerm")
|
|
.WithMany()
|
|
.HasForeignKey("AcademicTermId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Course", "Course")
|
|
.WithMany()
|
|
.HasForeignKey("CourseId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.Navigation("AcademicTerm");
|
|
|
|
b.Navigation("Course");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTaskClass", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.AdministrativeClass", "AdministrativeClass")
|
|
.WithMany()
|
|
.HasForeignKey("AdministrativeClassId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany("Classes")
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("AdministrativeClass");
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTaskTeacher", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.Teacher", "Teacher")
|
|
.WithMany()
|
|
.HasForeignKey("TeacherId")
|
|
.OnDelete(DeleteBehavior.Restrict)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Academic.TeachingTask", "TeachingTask")
|
|
.WithMany("Teachers")
|
|
.HasForeignKey("TeachingTaskId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Teacher");
|
|
|
|
b.Navigation("TeachingTask");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<System.Guid>", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<System.Guid>", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<System.Guid>", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<System.Guid>", b =>
|
|
{
|
|
b.HasOne("Jiaowu.Api.Domain.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.AdministrativeClass", b =>
|
|
{
|
|
b.Navigation("Students");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionOffering", b =>
|
|
{
|
|
b.Navigation("Enrollments");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CourseSelectionRound", b =>
|
|
{
|
|
b.Navigation("Offerings");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumModule", b =>
|
|
{
|
|
b.Navigation("Courses");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.CurriculumPlan", b =>
|
|
{
|
|
b.Navigation("Modules");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.DegreeAwardBatch", b =>
|
|
{
|
|
b.Navigation("Results");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamPlan", b =>
|
|
{
|
|
b.Navigation("Sessions");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.ExamSession", b =>
|
|
{
|
|
b.Navigation("Invigilators");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GradeSheet", b =>
|
|
{
|
|
b.Navigation("Records");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationAuditBatch", b =>
|
|
{
|
|
b.Navigation("Results");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceBatch", b =>
|
|
{
|
|
b.Navigation("Items");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.GraduationClearanceItem", b =>
|
|
{
|
|
b.Navigation("Records");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.SchedulePlan", b =>
|
|
{
|
|
b.Navigation("Entries");
|
|
});
|
|
|
|
modelBuilder.Entity("Jiaowu.Api.Domain.Academic.TeachingTask", b =>
|
|
{
|
|
b.Navigation("Classes");
|
|
|
|
b.Navigation("Teachers");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|