feat:优化导入数据结构

This commit is contained in:
henry
2022-04-15 09:13:57 +08:00
parent 9295c5a7c0
commit cb4e02e6e3
2 changed files with 13 additions and 10 deletions

View File

@ -44,9 +44,11 @@ func TestNewExcelImport(t *testing.T) {
}
data := excel.Analysis(&Data{})
t.Log(len(data))
for _, v := range data {
_data, ok := v.(*Data)
t.Log(ok)
t.Log(_data.Name)
t.Log(_data)
}
}