no message
parent
da77cb86d5
commit
2030042f8f
|
@ -458,10 +458,12 @@ func GetPageBook(c *gin.Context) {
|
||||||
|
|
||||||
iLmit, e := strconv.Atoi(limit)
|
iLmit, e := strconv.Atoi(limit)
|
||||||
if nil != e {
|
if nil != e {
|
||||||
|
log.Print(e.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
iOffset, e := strconv.Atoi(offset)
|
iOffset, e := strconv.Atoi(offset)
|
||||||
if nil != e {
|
if nil != e {
|
||||||
|
log.Print(e.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
e = c.BindJSON(&req)
|
e = c.BindJSON(&req)
|
||||||
|
|
2
main.go
2
main.go
|
@ -171,7 +171,7 @@ func main() {
|
||||||
api.PUT("/book", controller.CreateBook) //
|
api.PUT("/book", controller.CreateBook) //
|
||||||
api.POST("/book", controller.UpdateBook) //
|
api.POST("/book", controller.UpdateBook) //
|
||||||
api.POST("/getbook", controller.GetBook) // 单书籍数据
|
api.POST("/getbook", controller.GetBook) // 单书籍数据
|
||||||
api.POST("/books", controller.GetPageBook) // 批量书籍
|
api.POST("/getbooks", controller.GetPageBook) // 批量书籍
|
||||||
api.POST("/delbook", controller.DeleteMemos) // 删除书籍
|
api.POST("/delbook", controller.DeleteMemos) // 删除书籍
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue