- package response
- import (
- aiPredictModel "eta/eta_api/models/ai_predict_model"
- "eta/eta_api/models/data_manage"
- "github.com/rdlucklib/rdluck_tools/paging"
- )
- type AiPredictModelIndexConfigListResp struct {
- List []aiPredictModel.AiPredictModelIndexConfigView
- Paging *paging.PagingItem `description:"分页数据"`
- }
- type AiPredictModelDetailResp struct {
- DailyChartView *data_manage.ChartInfoDetailResp `description:"日度预测数据图表"`
- }
|