7 Star 2 Fork 2

赵康铭/tinyTicktok

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
user.go 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
package model
import "gitee.com/zhaokangming/tiny-ticktok/pkg/app"
// User 用户信息列表
type User struct {
Id int64 `json:"id,omitempty"` // 用户id
Name string `json:"name,omitempty"` // 用户名称
FollowCount int64 `json:"follow_count,omitempty"` // 粉丝总数
FollowerCount int64 `json:"follower_count,omitempty"` // 粉丝总数
IsFollow bool `json:"is_follow,omitempty"` // true-已关注,false-未关注
}
// UserLoginResponse 用于登陆/注册返回的结构体
type UserLoginResponse struct {
app.Response
UserId int64 `json:"user_id,omitempty"`
Token string `json:"token"`
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/zhaokangming/tiny-ticktok.git
git@gitee.com:zhaokangming/tiny-ticktok.git
zhaokangming
tiny-ticktok
tinyTicktok
dcbaf51081e9

搜索帮助