完善功能

This commit is contained in:
2025-07-16 15:16:40 +08:00
parent b2871ec0d2
commit f68a5b360b
123 changed files with 4643 additions and 931 deletions

View File

@ -4,10 +4,10 @@ import "github.com/gogf/gf/v2/frame/g"
type UserFollowAuthor struct {
g.Meta `orm:"table:user_follow_authors"`
Id int64 `json:"id"`
UserId int64 `json:"userId"`
AuthorId int64 `json:"authorId"`
FollowedAt int64 `json:"followedAt"`
Id int64 `json:"id" orm:"id"`
UserId int64 `json:"userId" orm:"user_id"`
AuthorId int64 `json:"authorId" orm:"author_id"`
FollowedAt int64 `json:"followedAt" orm:"followed_at"`
}
type UserFollowAuthorListIn struct {