2021-10-17 17:35:18 +08:00
|
|
|
|
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
|
|
|
|
|
|
{
|
2021-11-06 17:13:38 +08:00
|
|
|
|
public DbSet<brand> brand { get; set; }
|
|
|
|
|
|
public DbSet<category> category { get; set; }
|
2021-10-17 17:35:18 +08:00
|
|
|
|
public DbSet<menu> menu { get; set; }
|
|
|
|
|
|
public DbSet<mould> mould { get; set; }
|
2021-11-06 17:13:38 +08:00
|
|
|
|
public DbSet<order> order { get; set; }
|
2021-10-17 17:35:18 +08:00
|
|
|
|
public DbSet<role> role { get; set; }
|
2021-11-06 17:13:38 +08:00
|
|
|
|
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; }
|
2021-10-17 17:35:18 +08:00
|
|
|
|
public DbSet<user> user { get; set; }
|
2021-10-30 18:48:58 +08:00
|
|
|
|
public DbSet<visit> visit { get; set; }
|
2021-10-17 17:35:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|