12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //------------------------------------------------------------------------------
- // <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_FreeSelectionCouseApply_Mapping : EntityTypeConfiguration<EM_FreeSelectionCouseApply>
- {
- public EM_FreeSelectionCouseApply_Mapping()
- {
- this.HasKey(t => t.FreeSelectionCouseApplyID);
- this.ToTable("EM_FreeSelectionCouseApply");
- this.Property(t => t.FreeSelectionCouseApplyID).HasColumnName("FreeSelectionCouseApplyID");
- 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.ApprovalStatus).HasColumnName("ApprovalStatus");
- 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_FreeSelectionCouseApply).HasForeignKey(d => d.DepartmentID);
- this.HasOptional(t => t.CF_Schoolyear).WithMany(t => t.EM_FreeSelectionCouseApply).HasForeignKey(d => d.SchoolyearID);
- this.HasOptional(t => t.EM_FreeSelectionCouse).WithMany(t => t.EM_FreeSelectionCouseApply).HasForeignKey(d => d.FreeSelectionCouseID);
- }
- }
- }
|