mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
28 lines
929 B
C#
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; }
|
|
}
|
|
}
|
|
|