no message
parent
37dd7d8b6f
commit
da77cb86d5
|
@ -434,7 +434,8 @@ func GetBook(c *gin.Context) {
|
||||||
}
|
}
|
||||||
var book model.Book
|
var book model.Book
|
||||||
book.ID = int64(req.ID)
|
book.ID = int64(req.ID)
|
||||||
if e == db.GetOrm().First(&book, req.ID).Error {
|
e = db.GetOrm().First(&book, req.ID).Error
|
||||||
|
if e != nil {
|
||||||
logs.Error(e.Error)
|
logs.Error(e.Error)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
2
main.go
2
main.go
|
@ -170,7 +170,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("/book", controller.GetBook) // 单书籍数据
|
api.POST("/getbook", controller.GetBook) // 单书籍数据
|
||||||
api.POST("/books", controller.GetPageBook) // 批量书籍
|
api.POST("/books", controller.GetPageBook) // 批量书籍
|
||||||
api.POST("/delbook", controller.DeleteMemos) // 删除书籍
|
api.POST("/delbook", controller.DeleteMemos) // 删除书籍
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@ type Book struct {
|
||||||
Author string `gorm:"column:author" sql:"author" json:"author"`
|
Author string `gorm:"column:author" sql:"author" json:"author"`
|
||||||
Title string `gorm:"column:title" sql:"title" json:"title"`
|
Title string `gorm:"column:title" sql:"title" json:"title"`
|
||||||
Tag string `gorm:"column:tag" sql:"tag" json:"tag"`
|
Tag string `gorm:"column:tag" sql:"tag" json:"tag"`
|
||||||
|
Content string `gorm:"column:content" sql:"content" json:"content"`
|
||||||
CreateTime utils.OrmTime ` gorm:"column:create_time" sql:"create_time" json:"create_time"`
|
CreateTime utils.OrmTime ` gorm:"column:create_time" sql:"create_time" json:"create_time"`
|
||||||
}
|
}
|
||||||
// 设置User的表名为`profiles`
|
// 设置User的表名为`profiles`
|
||||||
|
|
Loading…
Reference in New Issue