You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
849 B

2 weeks ago
  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 int64 `json:"id" orm:"id" description:""` //
  11. Account string `json:"account" orm:"account" description:""` //
  12. Password string `json:"password" orm:"password" description:""` //
  13. Username string `json:"username" orm:"username" description:""` //
  14. Status int `json:"status" orm:"status" description:""` //
  15. CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` //
  16. }