ER_ScoreConvertedSubmitedScore_Mapping.cs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. using System.ComponentModel.DataAnnotations;
  15. using System.Data.Common;
  16. using System.Data.Entity;
  17. using System.Data.Entity.ModelConfiguration;
  18. using System.Data.Entity.Infrastructure;
  19. using System.ComponentModel.DataAnnotations.Schema;
  20. internal partial class ER_ScoreConvertedSubmitedScore_Mapping : EntityTypeConfiguration<ER_ScoreConvertedSubmitedScore>
  21. {
  22. public ER_ScoreConvertedSubmitedScore_Mapping()
  23. {
  24. this.HasKey(t => t.ScoreConvertedSubmitedScoreID);
  25. this.ToTable("ER_ScoreConvertedSubmitedScore");
  26. this.Property(t => t.ScoreConvertedSubmitedScoreID).HasColumnName("ScoreConvertedSubmitedScoreID");
  27. this.Property(t => t.ScoreConvertByReplaceID).HasColumnName("ScoreConvertByReplaceID");
  28. this.Property(t => t.SchoolyearID).HasColumnName("SchoolyearID");
  29. this.Property(t => t.SchoolyearNumID).HasColumnName("SchoolyearNumID");
  30. this.Property(t => t.FinalExaminationID).HasColumnName("FinalExaminationID");
  31. this.Property(t => t.DepartmentID).HasColumnName("DepartmentID");
  32. this.Property(t => t.ClassName).HasColumnName("ClassName").HasMaxLength(100);
  33. this.Property(t => t.CoursematerialID).HasColumnName("CoursematerialID");
  34. this.Property(t => t.CourseTypeID).HasColumnName("CourseTypeID");
  35. this.Property(t => t.ExamsCategoryID).HasColumnName("ExamsCategoryID");
  36. this.Property(t => t.ExaminationModeID).HasColumnName("ExaminationModeID");
  37. this.Property(t => t.HandleModeID).HasColumnName("HandleModeID");
  38. this.Property(t => t.Credit).HasColumnName("Credit");
  39. this.Property(t => t.Totalhours).HasColumnName("Totalhours");
  40. this.Property(t => t.ExamsDatetime).HasColumnName("ExamsDatetime");
  41. this.Property(t => t.ResultTypeID).HasColumnName("ResultTypeID");
  42. this.Property(t => t.CreatorUserID).HasColumnName("CreatorUserID");
  43. this.Property(t => t.EntryDeadlineTime).HasColumnName("EntryDeadlineTime");
  44. this.Property(t => t.IsEntry).HasColumnName("IsEntry");
  45. this.Property(t => t.ExaminationType).HasColumnName("ExaminationType");
  46. this.Property(t => t.StarttermID).HasColumnName("StarttermID");
  47. this.Property(t => t.UserID).HasColumnName("UserID");
  48. this.Property(t => t.ExamsStateID).HasColumnName("ExamsStateID");
  49. this.Property(t => t.TotalScore).HasColumnName("TotalScore");
  50. this.Property(t => t.ScoreCredit).HasColumnName("ScoreCredit");
  51. this.Property(t => t.GradePoint).HasColumnName("GradePoint");
  52. this.Property(t => t.Remark).HasColumnName("Remark");
  53. this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
  54. this.Property(t => t.CreateTime).HasColumnName("CreateTime");
  55. this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
  56. this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
  57. this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
  58. this.HasOptional(t => t.ER_ScoreConvertByReplace).WithMany(t => t.ER_ScoreConvertedSubmitedScore).HasForeignKey(d => d.ScoreConvertByReplaceID);
  59. }
  60. }
  61. }