Sys_Role_Mapping.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 Sys_Role_Mapping : EntityTypeConfiguration<Sys_Role>
  21. {
  22. public Sys_Role_Mapping()
  23. {
  24. this.HasKey(t => t.RoleID);
  25. this.ToTable("Sys_Role");
  26. this.Property(t => t.RoleID).HasColumnName("RoleID");
  27. this.Property(t => t.TypeID).HasColumnName("TypeID");
  28. this.Property(t => t.RoleName).HasColumnName("RoleName").IsRequired().HasMaxLength(100);
  29. this.Property(t => t.Description).HasColumnName("Description").HasMaxLength(500);
  30. this.Property(t => t.IsSystemRole).HasColumnName("IsSystemRole");
  31. this.Property(t => t.SystemRoleType).HasColumnName("SystemRoleType");
  32. this.Property(t => t.DefaultDataRange).HasColumnName("DefaultDataRange");
  33. this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
  34. this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
  35. this.Property(t => t.CreateTime).HasColumnName("CreateTime");
  36. this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
  37. this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
  38. this.Property(t => t.OrderNo).HasColumnName("OrderNo");
  39. this.HasMany(t => t.Sys_User).WithMany(t => t.Sys_Role)
  40. .Map(m =>
  41. {
  42. m.ToTable("Sys_User_Sys_Role");
  43. m.MapLeftKey("RoleID");
  44. m.MapRightKey("UserID");
  45. });
  46. }
  47. }
  48. }