From 1b4337e04bc35c8b6f4931a5896f04884fef69c6 Mon Sep 17 00:00:00 2001
From: liuxiaolong <liuxiaolong@aiotlink.com>
Date: 星期四, 02 七月 2020 15:18:43 +0800
Subject: [PATCH] fix AggregateTaskList

---
 controllers/sdk.go |   38 +++++++++++++++++++++++++++++++-------
 1 files changed, 31 insertions(+), 7 deletions(-)

diff --git a/controllers/sdk.go b/controllers/sdk.go
index d314a68..479c16c 100644
--- a/controllers/sdk.go
+++ b/controllers/sdk.go
@@ -47,7 +47,7 @@
 // @Description 绠楁硶淇濆瓨
 // @Accept json
 // @Produce json
-// @Tags sdk
+// @Tags 绠楁硶
 // @Param reqMap body controllers.SdkVo true "浜鸿劯妫�娴�"
 // @Success 200 {string} json "{"code":200, msg:"璇锋眰澶勭悊鎴愬姛",data:"",success:true}"
 // @Failure 500 {string} json "{"code":500, msg:"璇锋眰澶辫触",data:"",success:false}"
@@ -73,7 +73,7 @@
 // @Summary 鏌ユ壘鎵�鏈夌畻娉�
 // @Description 鏌ユ壘鎵�鏈夌畻娉�
 // @Produce json
-// @Tags sdk
+// @Tags 绠楁硶
 // @Param sdkName query string false "鍙�夊弬鏁�"
 // @Success 200 {string} json "{"code":200, msg:"璇锋眰澶勭悊鎴愬姛",data:"绠楁硶鍒楄〃",success:true}"
 // @Failure 500 {string} json "{"code":500, msg:"璇锋眰澶辫触",data:"[]",success:false}"
@@ -91,7 +91,7 @@
 // @Summary 鏍规嵁id鑾峰彇绠楁硶淇℃伅
 // @Description 鏍规嵁id鑾峰彇绠楁硶淇℃伅
 // @Produce json
-// @Tags sdk
+// @Tags 绠楁硶
 // @Param id query string true "绠楁硶id锛屽繀濉�"
 // @Success 200 {string} json "{"code":200, msg:"璇锋眰澶勭悊鎴愬姛",data:"绠楁硶淇℃伅",success:true}"
 // @Failure 500 {string} json "{"code":500, msg:"璇锋眰澶辫触",data:"",success:false}"
@@ -134,7 +134,7 @@
 // @Summary 鏍规嵁taskId鑾峰彇绠楁硶淇℃伅
 // @Description 鏍规嵁taskId鑾峰彇绠楁硶淇℃伅
 // @Produce json
-// @Tags sdk
+// @Tags 绠楁硶
 // @Param taskId query string true "taskId锛屽繀濉�"
 // @Success 200 {string} json "{"code":200, msg:"璇锋眰澶勭悊鎴愬姛",data:"绠楁硶淇℃伅",success:true}"
 // @Failure 500 {string} json "{"code":500, msg:"璇锋眰澶辫触",data:"",success:false}"
@@ -158,7 +158,7 @@
 // @Description 绠楁硶瀹夎鍖呬笂浼�(鍒嗗潡妫�鏌�)
 // @Accept multipart/form-data
 // @Produce json
-// @Tags sdk
+// @Tags 绠楁硶
 // @Param chunkNumber formData int true "褰撳墠鏄鍑犱釜鍒嗗潡"
 // @Param chunkSize formData int true "姣忎竴鍧楃殑澶у皬"
 // @Param currentChunkSize formData int true "褰撳墠鍧楃殑澶у皬"
@@ -210,7 +210,7 @@
 // @Description 绠楁硶瀹夎鍖呬笂浼�
 // @Accept multipart/form-data
 // @Produce json
-// @Tags sysset
+// @Tags 绠楁硶
 // @Param chunkNumber formData int true "褰撳墠鏄鍑犱釜鍒嗗潡"
 // @Param chunkSize formData int true "姣忎竴鍧楃殑澶у皬"
 // @Param currentChunkSize formData int true "褰撳墠鍧楃殑澶у皬"
@@ -278,7 +278,7 @@
 // @Summary 浠庡晢鍩庝笅杞芥垨鍗囩骇绠楁硶
 // @Description 浠庡晢鍩庝笅杞芥垨鍗囩骇绠楁硶
 // @Produce json
-// @Tags sysset
+// @Tags 绠楁硶
 // @Param path query string true "绠楁硶id"
 // @Success 200 {string} json "{"code":200, msg:"", success:true}"
 // @Failure 500 {string} json "{"code":500, msg:"", success:false}"
@@ -296,3 +296,27 @@
 		util.ResponseFormat(c, &code.Code{http.StatusBadRequest, false, err.Error()}, err.Error())
 	}
 }
+
+// @Security ApiKeyAuth
+// @Summary 浣跨敤婵�娲荤爜婵�娲诲畨瑁呯畻娉�
+// @Description 浣跨敤婵�娲荤爜婵�娲诲畨瑁呯畻娉�
+// @Produce json
+// @Tags 绠楁硶
+// @Param code query string true "婵�娲荤爜"
+// @Success 200 {string} json "{"code":200, msg:"", success:true}"
+// @Failure 500 {string} json "{"code":500, msg:"", success:false}"
+// @Router /data/api-v/sdk/active [get]
+func (sc SdkController) Active(c *gin.Context) {
+	cod := c.GetString("code")
+	if cod == "" {
+		util.ResponseFormat(c, code.RequestParamError, "婵�娲荤爜涓嶈兘涓虹┖")
+		return
+	}
+	var sv service.SdkInstallService
+	err := sv.Active(cod)
+	if err == nil {
+		util.ResponseFormat(c,code.Success,  "婵�娲绘垚鍔�")
+	} else {
+		util.ResponseFormat(c,code.ComError, err.Error())
+	}
+}
\ No newline at end of file

--
Gitblit v1.8.0