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

View File

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