Files
Yi.Admin/Yi.Framework/Yi.Framework.Model/T4DataContext.cs
2021-11-06 17:13:38 +08:00

28 lines
929 B
C#

using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Text;
using Yi.Framework.Model.Models;
namespace Yi.Framework.Model
{
public partial class DataContext :DbContext
{
public DbSet<brand> brand { get; set; }
public DbSet<category> category { get; set; }
public DbSet<menu> menu { get; set; }
public DbSet<mould> mould { get; set; }
public DbSet<order> order { get; set; }
public DbSet<role> role { get; set; }
public DbSet<sku> sku { get; set; }
public DbSet<spec_group> spec_group { get; set; }
public DbSet<spec_param> spec_param { get; set; }
public DbSet<spu> spu { get; set; }
public DbSet<spu_detail> spu_detail { get; set; }
public DbSet<stock> stock { get; set; }
public DbSet<user> user { get; set; }
public DbSet<visit> visit { get; set; }
}
}