12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using CZFW.Core;
- using CZFW.Core.Security;
- using CZFW.Framework.Model.Entity;
- using CZKJ.GBRS2.Entity;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace CZKJ.GBRS2.Web
- {
- public class DbGen : DbContext
- {
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
- {
- optionsBuilder.UseMySQL(ConfigHelper.GetValue<string>("ConnectionStrings:Development"));
- }
- public DbSet<NavigationEntity> navigation { get; set; }
- public DbSet<DictEntity> dict { get; set; }
- public DbSet<DictItemEntity> dictItem { get; set; }
- public DbSet<GalleryEntity> gallery { get; set; }
- public DbSet<CZFW.Framework.Model.Entity.UserInfoEntity> userinfo { get; set; }
- public DbSet<RoleMappingEntity> navMpping { get; set; }
- public DbSet<UserOperationRecordEntity> userOperationRecord { get; set; }
- public DbSet<SeoShareEntity> seoShare { get; set; }
- public DbSet<SysConfigEntity> sysConfig { get; set; }
- public DbSet<TypeEntity> type { get; set; }
- public DbSet<PublicInfoEntity> publicinfor { get; set; }
- public DbSet<PositionEntity> position { get; set; }
- public DbSet<ArticleEntity> article { get; set; }
- public DbSet<OperationLogEntity> operationLog { get; set; }
- public DbSet<ProductEntity> product { get; set; }
- public DbSet<CustomerInfoEntity> customer { get; set; }
- public DbSet<PriceAnnouncementEntity> priceAnnouncement { get; set; }
- }
- }
|