fix
liuxiaolong
2020-03-02 eff19d68fed3bbeb1e671455b502885f98fc11cb
controllers/fileAnalysis.go
@@ -143,10 +143,20 @@
}
// @Param stackId string query true "stackId"
// @Param type int query true "type"
// @Security ApiKeyAuth
// @Summary 按数据栈id查找文件
// @Description 按数据栈id查找文件
// @Accept json
// @Produce json
// @Tags 本地文件
// @Param stackId query string true "stackId"
// @Param type query int true "type"
// @Param name query string "搜索条件"
// @Param page query int true "当前页"
// @Param size query int true "每页数量"
// @Success 200 {string} json "{"code":200, success:true, msg:"", data:""}"
// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:""}"
// @Router /data/api-v/fileAnalysis/findByStackId [get]
func (fac FileAnalysisController) FindByStackId(c *gin.Context) {
   stackId := c.Query("stackId")
   if stackId == "" {
@@ -169,4 +179,4 @@
   } else {
      util.ResponseFormat(c,code.Success, arr)
   }
}
}