feat: swagger接口文档更新1.0.8改TokenAuth

This commit is contained in:
TsMask
2025-01-24 09:40:28 +08:00
parent a431963e36
commit bfe898d15f
43 changed files with 490 additions and 490 deletions

View File

@@ -103,7 +103,7 @@ func (s *AccountController) Login(c *gin.Context) {
// @Accept json
// @Produce json
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Login User Information
// @Description Login User Information
// @Router /getInfo [get]
@@ -140,7 +140,7 @@ func (s *AccountController) Info(c *gin.Context) {
// @Accept json
// @Produce json
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Login User Routing Information
// @Description Login User Routing Information
// @Router /getRouters [get]
@@ -175,7 +175,7 @@ func (s *AccountController) Router(c *gin.Context) {
// @Accept json
// @Produce json
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary System Logout
// @Description System Logout
// @Router /logout [post]

View File

@@ -37,7 +37,7 @@ type CaptchaController struct {
// @Accept json
// @Produce json
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Get CAPTCHA
// @Description Get CAPTCHA
// @Router /captchaImage [get]

View File

@@ -78,7 +78,7 @@ func (s *FileController) Download(c *gin.Context) {
// @Param file formData file true "The file to upload."
// @Param subPath formData string true "subpath, eg: default or common" Enums(default, common)
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Upload a file
// @Description Upload a file
// @Router /file/upload [post]
@@ -122,7 +122,7 @@ func (s *FileController) Upload(c *gin.Context) {
// @Produce json
// @Param data body object true "Request Param"
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Slice file checking
// @Description Slice file checking
// @Router /file/chunkCheck [post]
@@ -158,7 +158,7 @@ func (s *FileController) ChunkCheck(c *gin.Context) {
// @Produce json
// @Param data body object true "Request Param"
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Slice file merge
// @Description Slice file merge
// @Router /file/chunkMerge [post]
@@ -209,7 +209,7 @@ func (s *FileController) ChunkMerge(c *gin.Context) {
// @Param identifier formData string true "Slice Marker"
// @Param index formData string true "Slice No."
// @Success 200 {object} object "Response Results"
// @Security ApiKeyAuth
// @Security TokenAuth
// @Summary Sliced file upload
// @Description Sliced file upload
// @Router /file/chunkUpload [post]