123456789101112131415161718 |
- package response
- import (
- "eta_gn/eta_api/models/data_manage"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- // ChartRefreshResp
- // @Description: 图表更新结果
- type ChartRefreshResp struct {
- RefreshResult bool `description:"刷新结果"`
- }
- // ChartInfoChartListResp ETA图库列表返回数据
- type ChartInfoChartListResp struct {
- Paging *paging.PagingItem
- List []*data_manage.ChartInfoView
- }
|