ER_DegreeApply_Mapping.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_DegreeApply_Mapping : EntityTypeConfiguration<ER_DegreeApply>
  21. {
  22. public ER_DegreeApply_Mapping()
  23. {
  24. this.HasKey(t => t.DegreeApplyID);
  25. this.ToTable("ER_DegreeApply");
  26. this.Property(t => t.DegreeApplyID).HasColumnName("DegreeApplyID");
  27. this.Property(t => t.GraduationApplyID).HasColumnName("GraduationApplyID");
  28. this.Property(t => t.ApplySchoolyearID).HasColumnName("ApplySchoolyearID");
  29. this.Property(t => t.DegreeConditionPackageID).HasColumnName("DegreeConditionPackageID");
  30. this.Property(t => t.DegreeBatchID).HasColumnName("DegreeBatchID");
  31. this.Property(t => t.DegreeNo).HasColumnName("DegreeNo").IsUnicode(false).HasMaxLength(50);
  32. this.Property(t => t.GrantDate).HasColumnName("GrantDate");
  33. this.Property(t => t.ApprovalStatus).HasColumnName("ApprovalStatus");
  34. this.Property(t => t.DegreeResult).HasColumnName("DegreeResult");
  35. this.Property(t => t.ApprovalResult).HasColumnName("ApprovalResult");
  36. this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
  37. this.Property(t => t.Remark).HasColumnName("Remark");
  38. this.Property(t => t.CreateTime).HasColumnName("CreateTime");
  39. this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
  40. this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
  41. this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
  42. this.HasOptional(t => t.CF_Schoolyear).WithMany(t => t.ER_DegreeApply).HasForeignKey(d => d.ApplySchoolyearID);
  43. this.HasOptional(t => t.ER_DegreeConditionPackage).WithMany(t => t.ER_DegreeApply).HasForeignKey(d => d.DegreeConditionPackageID);
  44. this.HasOptional(t => t.ER_GraduationApply).WithMany(t => t.ER_DegreeApply).HasForeignKey(d => d.GraduationApplyID);
  45. }
  46. }
  47. }