user.go 691 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" ` //
  11. Passport string `json:"passport" ` //
  12. Password string `json:"password" ` //
  13. Nickname string `json:"nickname" ` //
  14. Status int `json:"status" ` //
  15. CreatedAt *gtime.Time `json:"createdAt" ` //
  16. UpdatedAt *gtime.Time `json:"updatedAt" ` //
  17. }