上传模型类

This commit is contained in:
lzw
2021-11-06 17:13:38 +08:00
parent 8b3339c81d
commit 366386c40e
21 changed files with 4488 additions and 4 deletions

View File

@@ -8,9 +8,18 @@ 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; }
}