user.go 908 B

1234567891011121314151617181920
  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. // User is the golang structure for table user.
  9. type User struct {
  10. Id int `json:"id" orm:"id" description:""` //
  11. Name string `json:"name" orm:"name" description:""` //
  12. Gender int `json:"gender" orm:"gender" description:""` //
  13. Email string `json:"email" orm:"email" description:""` //
  14. Age int `json:"age" orm:"age" description:""` //
  15. CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` //
  16. UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` //
  17. }