9 lines
191 B
Go
9 lines
191 B
Go
|
package example
|
||
|
|
||
|
import "gin-vue-admin/model/system"
|
||
|
|
||
|
type ExcelInfo struct {
|
||
|
FileName string `json:"fileName"` // 文件名
|
||
|
InfoList []system.SysBaseMenu `json:"infoList"`
|
||
|
}
|