entity

package
v0.0.0-...-5afd5f5 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const TableNameUser = "user"

Variables

This section is empty.

Functions

This section is empty.

Types

type User

type User struct {
	ID         int64                 `gorm:"column:id;primaryKey;autoIncrement:true;comment:id" json:"id"`              // id
	Account    string                `gorm:"column:account;not null;comment:账号" json:"account"`                         // 账号
	Password   string                `gorm:"column:password;not null;comment:密码" json:"password"`                       // 密码
	UnionID    string                `gorm:"column:union_id;comment:微信开放平台id" json:"union_id"`                          // 微信开放平台id
	MpOpenID   string                `gorm:"column:mp_open_id;comment:公众号openId" json:"mp_open_id"`                     // 公众号openId
	NickName   string                `gorm:"column:nick_name;comment:用户昵称" json:"nick_name"`                            // 用户昵称
	Avatar     string                `gorm:"column:avatar;comment:用户头像" json:"avatar"`                                  // 用户头像
	Profile    string                `gorm:"column:profile;comment:用户简介" json:"profile"`                                // 用户简介
	Role       string                `gorm:"column:role;not null;default:user;comment:用户角色:user/admin/ban" json:"role"` // 用户角色:user/admin/ban
	CreateTime int64                 `gorm:"column:create_time;not null;comment:创建时间" json:"create_time"`               // 创建时间
	UpdateTime int64                 `gorm:"column:update_time;not null;comment:更新时间" json:"update_time"`               // 更新时间
	IsDelete   soft_delete.DeletedAt `gorm:"column:is_delete;not null;comment:是否删除;softDelete:flag" json:"is_delete"`   // 是否删除
}

User 用户

func (*User) TableName

func (*User) TableName() string

TableName User's table name

Jump to

Keyboard shortcuts

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