user.go 239 B

12345678910111213
  1. package model
  2. import (
  3. "time"
  4. )
  5. type User struct {
  6. ID uint64 `db:"id"`
  7. Username string `db:"username"`
  8. Password string `db:"password"`
  9. CreatedAt time.Time `db:"created_at"`
  10. UpdatedAt time.Time `db:"updated_at"`
  11. }