Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ERROR_USER_NOTEXISTS = errors.New("该用户不存在!") ERROR_USER_EXISTS = errors.New("该用户已经存在!") ERROR_USER_PWD = errors.New("密码错误!") )
根据业务逻辑需要, 自定义一些错误
Functions ¶
This section is empty.
Types ¶
type User ¶
type User struct { UserId int `json:"userId"` UserPwd string `json:"userPwd"` UserName string `json:"userName"` }
定义一个用户的结构体,用来接收redis中的用户数据信息 为了序列化和反序列化成功, 结构体字段对应的tag名字 应和 redis的user的key中对应的名字保持一致
Click to show internal directories.
Click to hide internal directories.