提交 a3f5a199 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

修改欢迎词 增加示例代码文件

上级 a87454e1
......@@ -6,7 +6,7 @@ import (
"main/model/modelInterface"
)
//获取分页功能 接收实现了分页接口的结构体 返回搜索完成的结果 许需要自行scan 或者fand
//获取分页功能 接收实现了分页接口的结构体 返回搜索完成的结果 许需要自行scan 或者find
func PagingServer(paging modelInterface.Paging, info modelInterface.PageInfo) (err error, db *gorm.DB, total int) {
limit := info.PageSize
offset := info.PageSize * (info.Page - 1)
......
......@@ -18,5 +18,6 @@ func InitRouter() *gin.Engine {
router.InitMenuRouter(Router) // 注册menu路由
router.InitAuthorityRouter(Router) // 注册角色路由
router.InitApiRouter(Router) // 注册功能api路由
return Router
}
package main
import (
"fmt"
"main/config"
"main/init/initRouter"
"main/init/qmlog"
......@@ -23,6 +24,7 @@ func main() {
defer qmsql.DEFAULTDB.Close()
Router := initRouter.InitRouter()
//qmlog.QMLog.Info("服务器开启") // 日志测试代码
s := &http.Server{
Addr: ":8888",
Handler: Router,
......@@ -30,5 +32,15 @@ func main() {
WriteTimeout: 10 * time.Second,
MaxHeaderBytes: 1 << 20,
}
fmt.Printf(`欢迎使用 Gin-Vue-Admin
作者:奇淼 And Spike666
微信:shouzi_1994
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html
默认前端文件运行地址:http://127.0.0.1:8080
`,s.Addr)
_ = s.ListenAndServe()
}
func run(server *http.Server){
}
\ No newline at end of file
package dbModel
type ExampleForm struct {
Name string `json:"name"`
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册