DbGen.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using CZFW.Core;
  2. using CZFW.Core.Security;
  3. using CZFW.Framework.Model.Entity;
  4. using CZKJ.GBRS2.Entity;
  5. using Microsoft.EntityFrameworkCore;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Threading.Tasks;
  10. namespace CZKJ.GBRS2.Web
  11. {
  12. public class DbGen : DbContext
  13. {
  14. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
  15. {
  16. optionsBuilder.UseMySQL(ConfigHelper.GetValue<string>("ConnectionStrings:Development"));
  17. }
  18. public DbSet<NavigationEntity> navigation { get; set; }
  19. public DbSet<DictEntity> dict { get; set; }
  20. public DbSet<DictItemEntity> dictItem { get; set; }
  21. public DbSet<GalleryEntity> gallery { get; set; }
  22. public DbSet<CZFW.Framework.Model.Entity.UserInfoEntity> userinfo { get; set; }
  23. public DbSet<RoleMappingEntity> navMpping { get; set; }
  24. public DbSet<UserOperationRecordEntity> userOperationRecord { get; set; }
  25. public DbSet<SeoShareEntity> seoShare { get; set; }
  26. public DbSet<SysConfigEntity> sysConfig { get; set; }
  27. public DbSet<TypeEntity> type { get; set; }
  28. public DbSet<PublicInfoEntity> publicinfor { get; set; }
  29. public DbSet<PositionEntity> position { get; set; }
  30. public DbSet<ArticleEntity> article { get; set; }
  31. public DbSet<OperationLogEntity> operationLog { get; set; }
  32. public DbSet<ProductEntity> product { get; set; }
  33. public DbSet<CustomerInfoEntity> customer { get; set; }
  34. public DbSet<PriceAnnouncementEntity> priceAnnouncement { get; set; }
  35. }
  36. }