update Src/Asp.NetCore2/SqlSugar.TDengineCore/TDengine/CodeFirst/TDengineCodeFirst.cs.

修复float类型错误

Signed-off-by: 逐浪人 <zhulangren@gmail.com>
This commit is contained in:
逐浪人
2023-11-08 08:24:36 +00:00
committed by Gitee
parent 38ffb9b51d
commit ce242779f0

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
@@ -157,6 +157,7 @@ namespace SqlSugar.TDengine
case "double":
return "DOUBLE";
case "float":
case "single":
return "FLOAT";
case "int":
return "INT";