|
@@ -28,7 +28,7 @@ type AiPredictModelIndexController struct {
|
|
|
// @Param PageSize query int true "每页数据条数"
|
|
|
// @Param CurrentIndex query int true "当前页页码,从1开始"
|
|
|
// @Param ClassifyId query int false "分类id"
|
|
|
-// @Param AiPredictModelIndexId query int false "模型标的ID"
|
|
|
+// @Param IndexId query int false "模型标的ID"
|
|
|
// @Param Keyword query string false "搜索关键词"
|
|
|
// @Success 200 {object} data_manage.ChartListResp
|
|
|
// @router /index/list [get]
|
|
@@ -48,7 +48,7 @@ func (this *AiPredictModelIndexController) List() {
|
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
classifyId, _ := this.GetInt("ClassifyId")
|
|
|
- indexId, _ := this.GetInt("AiPredictModelIndexId")
|
|
|
+ indexId, _ := this.GetInt("IndexId")
|
|
|
keyword := this.GetString("KeyWord")
|
|
|
keyword = strings.TrimSpace(keyword)
|
|
|
resp := new(aiPredictModel.AiPredictModelIndexPageListResp)
|