mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-26 14:15:50 +08:00
Add performance test project
This commit is contained in:
26
Src/Asp.Net/PerformanceTest/Models/TestEntity.cs
Normal file
26
Src/Asp.Net/PerformanceTest/Models/TestEntity.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PerformanceTest
|
||||
{
|
||||
[Dapper.Contrib.Extensions.Table("Test")]
|
||||
public class Test
|
||||
{
|
||||
[Dapper.Contrib.Extensions.Key]
|
||||
public int Id { get; set; }
|
||||
public byte? F_Byte { get; set; }
|
||||
public Int16? F_Int16 { get; set; }
|
||||
public int? F_Int32 { get; set; }
|
||||
public long? F_Int64 { get; set; }
|
||||
public double? F_Double { get; set; }
|
||||
public float? F_Float { get; set; }
|
||||
public decimal? F_Decimal { get; set; }
|
||||
public bool? F_Bool { get; set; }
|
||||
public DateTime? F_DateTime { get; set; }
|
||||
public Guid? F_Guid { get; set; }
|
||||
public string F_String { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user