Files
SqlSugar/Src/Asp.Net/SugarCodeGeneration/Codes/DbContextParameter.cs

13 lines
332 B
C#
Raw Normal View History

2019-01-17 00:58:05 +08:00
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; }
2019-01-21 01:01:38 +08:00
public string ClassNamespace { get; set; }
2019-01-17 00:58:05 +08:00
}
}