完善功能

This commit is contained in:
2025-07-16 15:16:40 +08:00
parent b2871ec0d2
commit f68a5b360b
123 changed files with 4643 additions and 931 deletions

View File

@ -0,0 +1,20 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// UserReadHistory is the golang structure of table user_read_history for DAO operations like Where/Data.
type UserReadHistory struct {
g.Meta `orm:"table:user_read_history, do:true"`
Id interface{} // 历史记录ID
UserId interface{} // 用户ID
BookId interface{} // 小说ID
ChapterId interface{} // 最后阅读章节ID
ReadAt *gtime.Time // 最后阅读时间
}