| 12345678910111213141516171819 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package entity
- import (
- "github.com/gogf/gf/v2/os/gtime"
- )
- // Users is the golang structure for table users.
- type Users struct {
- Id uint `json:"id" ` //
- Username string `json:"username" ` //
- Password string `json:"password" ` //
- Email string `json:"email" ` //
- CreatedAt *gtime.Time `json:"createdAt" ` //
- UpdatedAt *gtime.Time `json:"updatedAt" ` //
- }
|