23 lines
793 B
Go
23 lines
793 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterExport(group, public *gin.RouterGroup, h *Export) {
|
|
router := group.Group("/sysExportTemplate")
|
|
router.POST("/createSysExportTemplate", h.Create)
|
|
router.PUT("/updateSysExportTemplate", h.Update)
|
|
router.DELETE("/deleteSysExportTemplate", h.Delete)
|
|
router.DELETE("/deleteSysExportTemplateByIds", h.DeleteMany)
|
|
router.GET("/findSysExportTemplate", h.Find)
|
|
router.GET("/getSysExportTemplateList", h.List)
|
|
router.GET("/previewSQL", h.Preview)
|
|
router.GET("/exportExcel", h.Issue(false))
|
|
router.GET("/exportTemplate", h.Issue(true))
|
|
router.POST("/importExcel", h.Import)
|
|
pub := public.Group("/sysExportTemplate")
|
|
pub.GET("/exportExcelByToken", h.Download(false))
|
|
pub.GET("/exportTemplateByToken", h.Download(true))
|
|
}
|