package model
import "gorm.io/gorm"
type User struct {
gorm.Model
LoginName string
LoginPassword string
}
type UserAccount struct {