mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-12 00:28:02 +08:00
12 lines
280 B
C#
12 lines
280 B
C#
![]() |
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; }
|
|||
|
}
|
|||
|
}
|