package
Version:
v0.0.0-...-479da69
Opens a new window with list of versions in this module.
Published: Jul 6, 2022
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type BaseModel struct {
ID uint64 `gorm:"column:id;primary_key; AUTO_INCREMENT"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
DeletedAt *time.Time `gorm:"column:deleted_at"`
}
BaseModel 基础模型字段
type User struct {
BaseModel
Username string `gorm:"column:username"`
Password string `gorm:"column:password"`
}
User 用户表
Source Files
¶
Click to show internal directories.
Click to hide internal directories.