初始
This commit is contained in:
18
internal/app/system/model/entity/comments.go
Normal file
18
internal/app/system/model/entity/comments.go
Normal file
@ -0,0 +1,18 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// Comments is the golang structure for table comments.
|
||||
type Comments struct {
|
||||
Id uint `json:"id" description:"评论的主键"`
|
||||
NotificationId int `json:"notification_id" description:"关联的通知ID"`
|
||||
CommentText string `json:"comment_text" description:"评论内容"`
|
||||
CommentId string `json:"comment_id" description:"用户ID"`
|
||||
CreatedAt *gtime.Time `json:"created_at" description:""`
|
||||
}
|
Reference in New Issue
Block a user