fix error vectorlist生成List<List<float>>

This commit is contained in:
dingxiaowei
2024-06-30 10:35:03 +08:00
parent 85ba162116
commit 7eb6403a43
8 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ namespace ExcelTool
{
sb.Append(string.Format("\tpublic List<float> {0}", headers[i].FieldName));
}
else if (type.Equals("list"))
else if (type.Equals("vectorlist"))
{
sb.Append(string.Format("\tpublic List<List<float>> {0}", headers[i].FieldName));
}