hotgo/server/internal/model/do/admin_notice_read.go
2023-02-08 20:29:34 +08:00

22 lines
732 B
Go

// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminNoticeRead is the golang structure of table hg_admin_notice_read for DAO operations like Where/Data.
type AdminNoticeRead struct {
g.Meta `orm:"table:hg_admin_notice_read, do:true"`
Id interface{} // 记录ID
NoticeId interface{} // 公告ID
MemberId interface{} // 会员ID
Clicks interface{} // 已读次数
UpdatedAt *gtime.Time // 更新时间
CreatedAt *gtime.Time // 阅读时间
}