Versions in this module Expand all Collapse all v1 v1.1.2 Apr 3, 2024 v1.1.1 Apr 3, 2024 Changes in this version + var ErrNotFound = sqlx.ErrNotFound + type Users struct + CreateTime sql.NullTime + Id int64 + Mobile string + NickName string + Password string + UpdateTime sql.NullTime + UserName string + type UsersModel interface + FindByIds func(ctx context.Context, ids ...interface{}) (map[int64]Users, error) + FindRawByName func(ctx context.Context, userName string) (*Users, error) + Friends func(hasUserModel hasusers.UserUsersModel, userId int64) ([]Users, error) + GetListByKeyword func(keyword string, id int64) ([]Users, error) + func NewUsersModel(conn sqlx.SqlConn, c cache.CacheConf) UsersModel