sheet.go 356 B

123456789101112
  1. package response
  2. import (
  3. "eta/eta_api/models/data_manage"
  4. "eta/eta_api/models/data_manage/excel"
  5. )
  6. type FindExcelInfoResp struct {
  7. IsFind bool `description:"是否存在同名文件"`
  8. ExcelInfo *data_manage.MyExcelInfoList `description:"图表详情"`
  9. SheetList []*excel.SheetItem `description:"sheet列表"`
  10. }