🎨 移除多余模块

This commit is contained in:
2026-04-08 12:19:24 +08:00
parent 22bb5fdc94
commit 7599146f24
192 changed files with 623 additions and 13983 deletions

View File

@@ -0,0 +1,15 @@
package common
import (
api "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
)
type RouterGroup struct {
AttachmentCategoryRouter
FileUploadAndDownloadRouter
}
var (
attachmentCategoryApi = api.ApiGroupApp.CommonApiGroup.AttachmentCategoryApi
exaFileUploadAndDownloadApi = api.ApiGroupApp.CommonApiGroup.FileUploadAndDownloadApi
)

View File

@@ -0,0 +1,16 @@
package common
import (
"github.com/gin-gonic/gin"
)
type AttachmentCategoryRouter struct{}
func (r *AttachmentCategoryRouter) InitAttachmentCategoryRouterRouter(Router *gin.RouterGroup) {
router := Router.Group("attachmentCategory")
{
router.GET("getCategoryList", attachmentCategoryApi.GetCategoryList) // 分类列表
router.POST("addCategory", attachmentCategoryApi.AddCategory) // 添加/编辑分类
router.POST("deleteCategory", attachmentCategoryApi.DeleteCategory) // 删除分类
}
}

View File

@@ -0,0 +1,22 @@
package common
import (
"github.com/gin-gonic/gin"
)
type FileUploadAndDownloadRouter struct{}
func (e *FileUploadAndDownloadRouter) InitFileUploadAndDownloadRouter(Router *gin.RouterGroup) {
fileUploadAndDownloadRouter := Router.Group("fileUploadAndDownload")
{
fileUploadAndDownloadRouter.POST("upload", exaFileUploadAndDownloadApi.UploadFile) // 上传文件
fileUploadAndDownloadRouter.POST("getFileList", exaFileUploadAndDownloadApi.GetFileList) // 获取上传文件列表
fileUploadAndDownloadRouter.POST("deleteFile", exaFileUploadAndDownloadApi.DeleteFile) // 删除指定文件
fileUploadAndDownloadRouter.POST("editFileName", exaFileUploadAndDownloadApi.EditFileName) // 编辑文件名或者备注
fileUploadAndDownloadRouter.POST("breakpointContinue", exaFileUploadAndDownloadApi.BreakpointContinue) // 断点续传
fileUploadAndDownloadRouter.GET("findFile", exaFileUploadAndDownloadApi.FindFile) // 查询当前文件成功的切片
fileUploadAndDownloadRouter.POST("breakpointContinueFinish", exaFileUploadAndDownloadApi.BreakpointContinueFinish) // 切片传输完成
fileUploadAndDownloadRouter.POST("removeChunk", exaFileUploadAndDownloadApi.RemoveChunk) // 删除切片
fileUploadAndDownloadRouter.POST("importURL", exaFileUploadAndDownloadApi.ImportURL) // 导入URL
}
}