mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 04:03:44 +08:00
发布v2.15.1版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -10,10 +10,10 @@ import (
|
||||
|
||||
// AdminNoticeRead is the golang structure for table admin_notice_read.
|
||||
type AdminNoticeRead struct {
|
||||
Id int64 `json:"id" description:"记录ID"`
|
||||
NoticeId int64 `json:"noticeId" description:"公告ID"`
|
||||
MemberId int64 `json:"memberId" description:"会员ID"`
|
||||
Clicks int `json:"clicks" description:"已读次数"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" description:"阅读时间"`
|
||||
Id int64 `json:"id" orm:"id" description:"记录ID"`
|
||||
NoticeId int64 `json:"noticeId" orm:"notice_id" description:"公告ID"`
|
||||
MemberId int64 `json:"memberId" orm:"member_id" description:"会员ID"`
|
||||
Clicks int `json:"clicks" orm:"clicks" description:"已读次数"`
|
||||
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"`
|
||||
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"阅读时间"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user