// ========================================================================== // This is auto-generated by gf cli tool. Fill this file as you wish. // ========================================================================== package model import ( "github.com/gogf/gf/os/gtime" "lims_adapter/model/internal" ) // BaseUser is the golang structure for table base_user. type BaseUser internal.BaseUser // Fill with you ideas below. type UserQualification struct { Id int `orm:"Id,primary" json:"id"` // UserName string `orm:"UserName" json:"userName"` // 用户登录名 RealName string `orm:"RealName" json:"realName"` // 用户名 Qualification int `orm:"Qualification" json:"qualification"` // 资格 1普通资格 2资深资格 Mobile string `orm:"Mobile" json:"mobile"` // 手机号 AuthorizeTime *gtime.Time `orm:"AuthorizeTime" json:"authorizeTime"` // 授权时间 } type UserInfoReq struct { PageNun int `json:"pageNum"` PageSize int `json:"pageSize"` Enabled int `json:"enabled"` InstrumentId int `json:"instrument_id"` DepartmentId int `json:"department_id"` ReqType int `json:"req_type"` // 请求类型 1:预约资格 2:优先预约权 } type UserInfoRsp struct { Records []BaseUser `json:"records"` Total int `json:"total"'` }