上传T4模板

This commit is contained in:
yeslode
2021-10-17 17:35:18 +08:00
parent cdd9e8f45b
commit da6248e6b3
22 changed files with 302 additions and 21 deletions

View File

@@ -0,0 +1,17 @@
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<menu> menu { get; set; }
public DbSet<mould> mould { get; set; }
public DbSet<role> role { get; set; }
public DbSet<user> user { get; set; }
}
}