浏览代码

Merge branch 'eta/2.4.7' into debug

Roc 3 月之前
父节点
当前提交
11e7bbe658
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      controllers/data_manage/ai_predict_model/index.go

+ 2 - 2
controllers/data_manage/ai_predict_model/index.go

@@ -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)