users.go 648 B

12345678910111213141516171819
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // Users is the golang structure for table users.
  9. type Users struct {
  10. Id uint `json:"id" ` //
  11. Username string `json:"username" ` //
  12. Password string `json:"password" ` //
  13. Email string `json:"email" ` //
  14. CreatedAt *gtime.Time `json:"createdAt" ` //
  15. UpdatedAt *gtime.Time `json:"updatedAt" ` //
  16. }