using Microsoft.EntityFrameworkCore;
using VOL.Entity.DomainModels;
using YD_XinWei.Api.Entitys;
using YD_XinWei.Api.SmartSportsEntitys;
namespace YD_XinWei.Api.Context
{
///
/// 用户服务上下文
///
public class SmartSportsContext : DbContext
{
public SmartSportsContext(DbContextOptions options) : base(options)
{
}
public DbSet Class { get; set; }
public DbSet Grade { get; set; }
public DbSet Student { get; set; }
public DbSet School { get; set; }
public DbSet Sys_User { get; set; }
public DbSet XW_ProjectMode { get; set; }
public DbSet XW_TestingProject { get; set; }
}
}