meeting_probabilities.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. package request
  2. type ISheet struct {
  3. ScrollTop int `json:"scrollTop"`
  4. ScrollLeft int `json:"scrollLeft"`
  5. Index string `json:"index"`
  6. Status int `json:"status"`
  7. JfGirdSelectSave []struct{} `json:"jfgird_select_save"`
  8. LuckySheetSelectSave []struct{} `json:"luckysheet_select_save"`
  9. Data [][]interface{} `json:"data"`
  10. Config map[string]struct{} `json:"config"`
  11. VisibleDataRow []int `json:"visibledatarow"`
  12. VisibleDataColumn []int `json:"visibledatacolumn"`
  13. ChWidth int `json:"ch_width"`
  14. RhHeight int `json:"rh_height"`
  15. LuckySheetSelectionRange []int `json:"luckysheet_selection_range"`
  16. ZoomRatio int `json:"zoomRatio"`
  17. CellData []ISheetCellData `json:"celldata"`
  18. }
  19. type ISheetData struct {
  20. M string `json:"m"`
  21. Ct ISheetDataCt `json:"ct"`
  22. V string `json:"v"`
  23. }
  24. type ISheetDataCt struct {
  25. Fa string `json:"fa"`
  26. T string `json:"t"`
  27. }
  28. type ISheetCellData struct {
  29. R int `json:"r"`
  30. C int `json:"c"`
  31. V ISheetData `json:"v"`
  32. }