19 lines
421 B
Go
19 lines
421 B
Go
|
// Package excel...
|
||
|
//
|
||
|
// Description : excel...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2021-11-19 11:57 上午
|
||
|
package excel
|
||
|
|
||
|
// ReadResult ...
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 11:57 上午 2021/11/19
|
||
|
type ReadResult struct {
|
||
|
Error error // 异常信息
|
||
|
Result map[string][]map[string]interface{} // 查询结果 sheet => dataList
|
||
|
}
|