纽威
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
366 B

3 years ago
  1. using NFine.Domain.Entity.SystemManage;
  2. using System.Data.Entity.ModelConfiguration;
  3. namespace NFine.Mapping.SystemManage
  4. {
  5. public class RoleAuthorizeMap : EntityTypeConfiguration<RoleAuthorizeEntity>
  6. {
  7. public RoleAuthorizeMap()
  8. {
  9. this.ToTable("Sys_SRM_RoleAuthorize");
  10. this.HasKey(t => t.F_Id);
  11. }
  12. }
  13. }