mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-31 00:38:37 +08:00
22 lines
732 B
Go
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 // 阅读时间
|
|
}
|