gorm/internal/entity/user.go
2025-08-21 05:32:26 +07:00

9 lines
117 B
Go

package entity
type User struct {
ID uint
Name string `gorm:"column:name"`
Email string `gorm:"column:email"`
}