初始
This commit is contained in:
20
internal/app/system/model/do/comments.go
Normal file
20
internal/app/system/model/do/comments.go
Normal file
@ -0,0 +1,20 @@
|
||||
// =================================================================================
|
||||
// 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"
|
||||
)
|
||||
|
||||
// Comments is the golang structure of table comments for DAO operations like Where/Data.
|
||||
type Comments struct {
|
||||
g.Meta `orm:"table:comments, do:true"`
|
||||
Id interface{} // 评论的主键
|
||||
NotificationId interface{} // 关联的通知ID
|
||||
CommentText interface{} // 评论内容
|
||||
CommentId interface{} // 用户ID
|
||||
CreatedAt *gtime.Time //
|
||||
}
|
Reference in New Issue
Block a user