21 lines
680 B
Go
21 lines
680 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"
|
|
)
|
|
|
|
// ReadRecords is the golang structure of table read_records for DAO operations like Where/Data.
|
|
type ReadRecords struct {
|
|
g.Meta `orm:"table:read_records, do:true"`
|
|
Id interface{} // 记录ID
|
|
UserId interface{} // 用户ID
|
|
BookId interface{} // 小说ID
|
|
ChapterId interface{} // 章节ID
|
|
ReadAt *gtime.Time // 阅读时间
|
|
}
|