domain

package
v0.0.0-...-fa05059 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 1, 2024 License: MIT, MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Profile

type Profile struct {
	ID       int64  // 资料ID,主键
	UserID   int64  // 用户ID,外键,关联到用户
	NickName string // 昵称
	Avatar   string // 头像URL
	About    string // 个人简介
	Birthday string // 生日
}

Profile 表示用户详细资料的结构体

type User

type User struct {
	ID          int64   // 用户ID,主键
	Phone       *string // 手机号码,指针类型,允许为空
	Email       string  // 邮箱地址,唯一
	Password    string  // 密码
	CreateTime  int64   // 创建时间,Unix时间戳
	UpdatedTime int64
	Deleted     bool    // 删除标志,表示该用户是否被删除
	Profile     Profile // 用户的详细资料
}

User 表示用户信息的结构体

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL