18 lines
739 B
Go
18 lines
739 B
Go
// =================================================================================
|
|
// 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:"创建时间"`
|
|
}
|