index.go 656 B

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