index_config.go 455 B

12345678910111213141516
  1. package response
  2. import (
  3. aiPredictModel "eta/eta_api/models/ai_predict_model"
  4. "eta/eta_api/models/data_manage"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. )
  7. type AiPredictModelIndexConfigListResp struct {
  8. List []aiPredictModel.AiPredictModelIndexConfigView
  9. Paging *paging.PagingItem `description:"分页数据"`
  10. }
  11. type AiPredictModelDetailResp struct {
  12. DailyChartView *data_manage.ChartInfoDetailResp `description:"日度预测数据图表"`
  13. }