Files
api-proxy/services/board/board.go
Sakurasan 0348d383a3 up
2023-04-10 02:27:52 +08:00

12 lines
700 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package board
type user struct {
ID string `json:"id,omitempty"` // 自增长的唯一标识符。
GithubID string `json:"github_Id,omitempty"` // 从GitHub API获取的数字型用户ID。
UserID string `json:"userid,omitempty"` // 用户在GitHub上的用户名。
Name string `json:"name,omitempty"` // 用户在GitHub上的昵称如果有
Email string `json:"email,omitempty"` // 用户在GitHub上公开的电子邮件地址如果有
AvatarUrl string `json:"avatar_Url,omitempty"` // 用户在GitHub上的头像URL如果有
CreatedAt string `json:"created_At,omitempty"` // 记录插入到数据库中的时间。
}