package request type AiPredictModelIndexSaveScriptPathReq struct { IndexId int `description:"指标ID"` ScriptPath string `description:"脚本的路径"` } // AiPredictModelIndexRunReq AI预测模型运行请求参数 type AiPredictModelIndexRunReq struct { ClassifyId int `description:"分类ID"` Keyword string `description:"关键词-指标ID/指标名称"` IndexIdList []int `description:"选中的模型ID列表,SelectAll-false时,会用到这个字段"` NotIndexIdList []int `description:"排除的模型ID列表,SelectAll-true时,会用到这个字段"` SelectAll bool `description:"列表全选"` }