21 lines
722 B
Go
21 lines
722 B
Go
// =================================================================================
|
|
// 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 // 最后阅读时间
|
|
}
|