初始化v1

This commit is contained in:
2025-08-03 00:11:15 +08:00
commit b88c8b8afa
171 changed files with 22353 additions and 0 deletions

View 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:"创建时间"`
}