Update GBase bool bug

This commit is contained in:
sunkaixuan
2023-08-09 17:00:37 +08:00
parent 99802c87bd
commit fc08adee9d
2 changed files with 2 additions and 2 deletions

View File

@@ -132,7 +132,7 @@ namespace SqlSugar.GBase
} }
else if (type == UtilConstants.BoolType) else if (type == UtilConstants.BoolType)
{ {
return value.ObjToBool() ? "1" : "0"; return value.ObjToBool() ? "true" : "false";
} }
else else
{ {

View File

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>SqlSugar.GBaseCore</id> <id>SqlSugar.GBaseCore</id>
<version>5.1.4.2</version> <version>5.1.4.3</version>
<authors>sunkaixuan</authors> <authors>sunkaixuan</authors>
<owners>Landa</owners> <owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>