Files
honoka-chan/internal/model/user/users.go
T
YumeMichi c77241a883 Overhaul [1/n]
Signed-off-by: Sean Du <do4suki@gmail.com>
2026-01-29 02:42:28 +08:00

16 lines
375 B
Go

package user
type Users struct {
ID int `xorm:"id pk autoincr"`
Phone string `xorm:"phone"`
Password string `xorm:"password"`
Autokey string `xorm:"autokey"`
Ticket string `xorm:"ticket"`
UserID int `xorm:"user_id"`
LastLoginTime int64 `xorm:"last_login_time"`
}
func (Users) TableName() string {
return "users"
}