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.
17 lines
332 B
17 lines
332 B
package AccessSystemController
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
//模块的路由配置
|
|
func Routers(r *gin.RouterGroup) {
|
|
rr := r.Group("/accessSystem")
|
|
//配置接口
|
|
rr.POST("/AddAccessSystemInfo", AddAccessSystemInfo)
|
|
//rr.GET("/GetBaseBusiness", GetBaseBusiness)
|
|
return
|
|
}
|
|
|
|
func AddAccessSystemInfo(c *gin.Context) {
|
|
|
|
}
|