1234567891011121314151617181920212223242526 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package do
- import (
- "github.com/gogf/gf/v2/frame/g"
- "github.com/gogf/gf/v2/os/gtime"
- )
- // AdminUser is the golang structure of table admin_user for DAO operations like Where/Data.
- type AdminUser struct {
- g.Meta `orm:"table:admin_user, do:true"`
- Id interface{} //
- Username interface{} // 用户名
- Password interface{} // 密码
- LastLoginIp interface{} // 最后登录IP
- LastLoginTime *gtime.Time // 最后登录时间
- Status interface{} // 状态
- Description interface{} // 描述
- CreateTime *gtime.Time // 创建时间
- UpdateTime *gtime.Time // 更新时间
- Phone interface{} // 手机号
- Wxuserid interface{} // 企业微信关联id
- }
|