Files
novel/internal/model/do/read_log.go
2024-01-12 18:08:51 +08:00

24 lines
808 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// 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"
)
// ReadLog is the golang structure of table nv_read_log for DAO operations like Where/Data.
type ReadLog struct {
g.Meta `orm:"table:nv_read_log, do:true"`
Id interface{} //
ShortStoryId interface{} //
OperateType interface{} // 操作类型1-阅读2-加入书架
OperateTime *gtime.Time // 操作时间
ReadDuration interface{} // 阅读时长,秒为单位
CreatedAt *gtime.Time //
UpdatedAt *gtime.Time //
DeletedAt *gtime.Time //
}