From a529d3364b96ea14a01fc33b88891930f5f7b71f Mon Sep 17 00:00:00 2001 From: sunkaixuan <610262374@qq.com> Date: Tue, 21 May 2024 09:34:19 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E4=BA=BA=E5=A4=A7=E9=87=91=E4=BB=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs b/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs index 12b679c2d..ce815bad8 100644 --- a/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs +++ b/Src/Asp.NetCore2/SqlSugar/Realization/Kdbndp/DbBind/KdbndpBind.cs @@ -67,13 +67,16 @@ namespace SqlSugar public static List> MappingTypesConst = new List>(){ new KeyValuePair("int2",CSharpDataType.@short), + new KeyValuePair("uint2",CSharpDataType.@short), //new KeyValuePair("int1",CSharpDataType.@byte), new KeyValuePair("smallint",CSharpDataType.@short), new KeyValuePair("smallint",CSharpDataType.@byte), new KeyValuePair("int4",CSharpDataType.@int), + new KeyValuePair("uint4",CSharpDataType.@int), new KeyValuePair("integer",CSharpDataType.@int), new KeyValuePair("tinyint",CSharpDataType.@int), new KeyValuePair("int8",CSharpDataType.@long), + new KeyValuePair("uint8",CSharpDataType.@long), new KeyValuePair("bigint",CSharpDataType.@long), new KeyValuePair("float4",CSharpDataType.@float), new KeyValuePair("float4",CSharpDataType.Single),