فهرست منبع

tinyint类型转bool

Signed-off-by: skywolf627 <skywolf627@qq.com>
skywolf627 3 سال پیش
والد
کامیت
e12912fc08
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      Admin.NET/Admin.NET.Core/Util/CodeGenUtil.cs

+ 3 - 2
Admin.NET/Admin.NET.Core/Util/CodeGenUtil.cs

@@ -1,4 +1,4 @@
-using DbType = SqlSugar.DbType;
+using DbType = SqlSugar.DbType;
 
 namespace Admin.NET.Core;
 
@@ -230,7 +230,8 @@ public static class CodeGenUtil
             "text" or "varchar" or "char" or "nvarchar" or "nchar" or "timestamp" => "string",
             "int" => "int",
             "smallint" => "Int16",
-            "tinyint" => "byte",
+            //"tinyint" => "byte",
+            "tinyint" => "bool",    // MYSQL  
             "bigint" or "integer" => "long",
             "bit" => "bool",
             "money" or "smallmoney" or "numeric" or "decimal" => "decimal",