You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
524 B

package LinksystemController
import (
"dsDataex/MyModel/LinkSystem/LinksystemOpenAPI"
"github.com/gin-gonic/gin"
)
//Gin 路由配置
func Routers(r *gin.RouterGroup) {
rr := r.Group("/openapi")
rr.POST("/linksystem/ReadLinksystem", LinksystemOpenAPI.ReadLinksystem)
rr.POST("/linksystem/CreateLinksystem", LinksystemOpenAPI.CreateLinksystem)
rr.POST("/linksystem/UpdateLinksystem/:id", LinksystemOpenAPI.UpdateLinksystem)
rr.POST("/linksystem/DeleteLinksystem/:id", LinksystemOpenAPI.DeleteLinksystem)
return
}