index_config.go 283 B

1234567891011
  1. package response
  2. import (
  3. data_manage "eta/eta_api/models/ai_predict_model"
  4. "github.com/rdlucklib/rdluck_tools/paging"
  5. )
  6. type AiPredictModelIndexConfigListResp struct {
  7. List []data_manage.AiPredictModelIndexConfigView
  8. Paging *paging.PagingItem `description:"分页数据"`
  9. }