From aa91d7884e7fef55b47d6a4905596f72a5ef1ac3 Mon Sep 17 00:00:00 2001 From: liuxiaolong <liuxiaolong@aiotlink.com> Date: 星期六, 30 五月 2020 17:43:03 +0800 Subject: [PATCH] fix sdkType unTar --- router/router.go | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/router/router.go b/router/router.go index 0dfc2af..12d5af8 100644 --- a/router/router.go +++ b/router/router.go @@ -227,6 +227,8 @@ vdbperson.POST("/joinDbTable", dbPersonCont.JoinDbTable) vdbperson.POST("/move", dbPersonCont.Move) vdbperson.POST("/copy", dbPersonCont.Copy) + + vdbperson.POST("/multiUploadCarNo", dbPersonCont.MultiUploadCarNo) } // 绯荤粺璁剧疆 鎿嶄綔 @@ -255,6 +257,8 @@ vsset.GET("/patchUpdate", ssController.PatchUpdateCheck) vsset.POST("/patchUpdate", ssController.PatchUpdate) vsset.POST("/upgrade", ssController.Upgrade) + + vsset.POST("/sdkInstall", ssController.SdkInstall) } ic := r.Group(urlPrefix + "/info") @@ -324,6 +328,11 @@ fileAnalyApi.POST("/updateStatus", fileAnalysisC.UpdateStatus) fileAnalyApi.POST("/delete", fileAnalysisC.Delete) fileAnalyApi.POST("/sortFile", fileAnalysisC.SortFile) + fileAnalyApi.GET("/findByStackId", fileAnalysisC.FindByStackId) + + fileAnalyApi.POST("/move", fileAnalysisC.Move) + fileAnalyApi.POST("/rename", fileAnalysisC.Rename) + fileAnalyApi.POST("/copy", fileAnalysisC.Copy) } fileSettingApi := r.Group(urlPrefix + "/fileSetting") { -- Gitblit v1.8.0