chart.go 407 B

123456789101112131415161718
  1. package response
  2. import (
  3. "eta_gn/eta_api/models/data_manage"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. // ChartRefreshResp
  7. // @Description: 图表更新结果
  8. type ChartRefreshResp struct {
  9. RefreshResult bool `description:"刷新结果"`
  10. }
  11. // ChartInfoChartListResp ETA图库列表返回数据
  12. type ChartInfoChartListResp struct {
  13. Paging *paging.PagingItem
  14. List []*data_manage.ChartInfoView
  15. }