123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Data.Common;
- using System.Data.Entity;
- using System.Data.Entity.ModelConfiguration;
- using System.Data.Entity.Infrastructure;
- using System.ComponentModel.DataAnnotations.Schema;
-
- internal partial class EM_ExecutableFreeSelectionCouse_Mapping : EntityTypeConfiguration<EM_ExecutableFreeSelectionCouse>
- {
- public EM_ExecutableFreeSelectionCouse_Mapping()
- {
- this.HasKey(t => t.ExecutableFreeSelectionCouseID);
- this.ToTable("EM_ExecutableFreeSelectionCouse");
- this.Property(t => t.ExecutableFreeSelectionCouseID).HasColumnName("ExecutableFreeSelectionCouseID");
- this.Property(t => t.SchoolyearID).HasColumnName("SchoolyearID");
- this.Property(t => t.FreeSelectionCouseID).HasColumnName("FreeSelectionCouseID");
- this.Property(t => t.DefaultClassName).HasColumnName("DefaultClassName").HasMaxLength(50);
- this.Property(t => t.DepartmentID).HasColumnName("DepartmentID");
- this.Property(t => t.CourseStructureID).HasColumnName("CourseStructureID");
- this.Property(t => t.CourseCategoryID).HasColumnName("CourseCategoryID");
- this.Property(t => t.CourseTypeID).HasColumnName("CourseTypeID");
- this.Property(t => t.CourseQualityID).HasColumnName("CourseQualityID");
- this.Property(t => t.PracticeTypeID).HasColumnName("PracticeTypeID");
- this.Property(t => t.ExaminationModeID).HasColumnName("ExaminationModeID");
- this.Property(t => t.TeachinglanguageID).HasColumnName("TeachinglanguageID");
- this.Property(t => t.IsNeedMaterial).HasColumnName("IsNeedMaterial");
- this.Property(t => t.PeopleNumlower).HasColumnName("PeopleNumlower");
- this.Property(t => t.PeopleNumlimit).HasColumnName("PeopleNumlimit");
- this.Property(t => t.HandleModeID).HasColumnName("HandleModeID");
- this.Property(t => t.IsOpened).HasColumnName("IsOpened");
- this.Property(t => t.ResultTypeID).HasColumnName("ResultTypeID");
- this.Property(t => t.Remarks).HasColumnName("Remarks").HasMaxLength(500);
- this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
- this.Property(t => t.CreateTime).HasColumnName("CreateTime");
- this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
- this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
- this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
- this.HasOptional(t => t.CF_Department).WithMany(t => t.EM_ExecutableFreeSelectionCouse).HasForeignKey(d => d.DepartmentID);
- this.HasOptional(t => t.CF_Schoolyear).WithMany(t => t.EM_ExecutableFreeSelectionCouse).HasForeignKey(d => d.SchoolyearID);
- this.HasOptional(t => t.EM_FreeSelectionCouse).WithMany(t => t.EM_ExecutableFreeSelectionCouse).HasForeignKey(d => d.FreeSelectionCouseID);
- }
- }
- }
|