This commit is contained in:
sunkaixuan 2017-09-21 14:22:23 +08:00
parent a219c88872
commit 9f45293f23
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PerformanceTest.Items;
using PerformanceTest.TestItems;
namespace PerformanceTest
{
@ -16,7 +16,7 @@ namespace PerformanceTest
static void Main(string[] args)
{
new TestGetAll().Init();
new TestGetById().Init();
Console.ReadKey();
}
}

View File

@ -7,7 +7,7 @@ using Dapper;
using SqlSugar;
using Dapper.Contrib.Extensions;
namespace PerformanceTest.Items
namespace PerformanceTest.TestItems
{
public class TestGetAll
{