1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //------------------------------------------------------------------------------
- // <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_ExecutablePlan_Mapping : EntityTypeConfiguration<EM_ExecutablePlan>
- {
- public EM_ExecutablePlan_Mapping()
- {
- this.HasKey(t => t.ExecutablePlanID);
- this.ToTable("EM_ExecutablePlan");
- this.Property(t => t.ExecutablePlanID).HasColumnName("ExecutablePlanID");
- this.Property(t => t.SourceTypeID).HasColumnName("SourceTypeID");
- this.Property(t => t.DefaultClassName).HasColumnName("DefaultClassName").HasMaxLength(200);
- this.Property(t => t.SpecialtyPlanID).HasColumnName("SpecialtyPlanID");
- this.Property(t => t.SchoolyearID).HasColumnName("SchoolyearID");
- this.Property(t => t.GrademajorID).HasColumnName("GrademajorID");
- this.Property(t => t.CoursematerialID).HasColumnName("CoursematerialID");
- 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.DepartmentID).HasColumnName("DepartmentID");
- this.Property(t => t.IsNeedMaterial).HasColumnName("IsNeedMaterial");
- this.Property(t => t.ResultTypeID).HasColumnName("ResultTypeID");
- this.Property(t => t.HandleModeID).HasColumnName("HandleModeID");
- this.Property(t => t.Remark).HasColumnName("Remark");
- this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
- this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
- this.Property(t => t.CreateTime).HasColumnName("CreateTime");
- this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
- this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
- this.HasOptional(t => t.CF_Department).WithMany(t => t.EM_ExecutablePlan).HasForeignKey(d => d.DepartmentID);
- this.HasOptional(t => t.CF_Grademajor).WithMany(t => t.EM_ExecutablePlan).HasForeignKey(d => d.GrademajorID);
- this.HasOptional(t => t.CF_Schoolyear).WithMany(t => t.EM_ExecutablePlan).HasForeignKey(d => d.SchoolyearID);
- this.HasOptional(t => t.EM_Coursematerial).WithMany(t => t.EM_ExecutablePlan).HasForeignKey(d => d.CoursematerialID);
- this.HasOptional(t => t.EM_SpecialtyPlan).WithMany(t => t.EM_ExecutablePlan).HasForeignKey(d => d.SpecialtyPlanID);
- }
- }
- }
|