github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_user.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysUser is the golang structure of table sys_user for DAO operations like Where/Data.
    13  type SysUser struct {
    14  	g.Meta    `orm:"table:sys_user, do:true"`
    15  	Id        interface{} //
    16  	Username  interface{} // 账号
    17  	Password  interface{} // 密码
    18  	State     interface{} // 状态:0未激活、1正常、-1封号、-2异常、-3已注销
    19  	Type      interface{} // 用户类型:0匿名、1用户、2微商、4商户、8广告主、16服务商、32运营中心、64后台
    20  	Mobile    interface{} // 手机号
    21  	CreatedAt *gtime.Time //
    22  	UpdatedAt *gtime.Time //
    23  	DeletedAt *gtime.Time //
    24  	Email     interface{} // 邮箱
    25  }