Update Demo

This commit is contained in:
sunkaixuan
2019-01-17 00:58:05 +08:00
parent 2f38dc4750
commit 9b789010bb
11 changed files with 348 additions and 119 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
using SqlSugar;
namespace SugarCodeGeneration
{
public class DbContextParameter
{
public string ConnectionString { get; set; }
public DbType DbType { get; set; }
public List<string> Tables { get; set; }
}
}