初始化v1
This commit is contained in:
17
internal/model/entity/comment_like.go
Normal file
17
internal/model/entity/comment_like.go
Normal file
@@ -0,0 +1,17 @@
|
||||
// =================================================================================
|
||||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||||
// =================================================================================
|
||||
|
||||
package entity
|
||||
|
||||
import (
|
||||
"github.com/gogf/gf/v2/os/gtime"
|
||||
)
|
||||
|
||||
// CommentLike is the golang structure for table comment_like.
|
||||
type CommentLike struct {
|
||||
Id uint `json:"id" orm:"id,primary" description:"点赞ID"`
|
||||
CommentId uint `json:"comment_id" orm:"comment_id" description:"评论ID"`
|
||||
UserId uint `json:"user_id" orm:"user_id" description:"用户ID"`
|
||||
CreatedAt *gtime.Time `json:"created_at" orm:"created_at" description:"创建时间"`
|
||||
}
|
||||
Reference in New Issue
Block a user