model

package
v0.0.0-...-bd22ede Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 6, 2023 License: MIT Imports: 11 Imported by: 0

Documentation

Overview

Code generated by goctl. DO NOT EDIT.

Index

Constants

View Source
const UserCollectionName = "user"

Variables

View Source
var (
	ErrNotFound        = mon.ErrNotFound
	ErrInvalidObjectId = errors.New("invalid objectId")
)

Functions

This section is empty.

Types

type User

type User struct {
	ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`

	Mid  int64  `bson:"mid,omitempty" json:"mid,omitempty"`
	Name string `bson:"name,omitempty" json:"name,omitempty"`
	Sex  string `bson:"sex,omitempty" json:"sex,omitempty"`
	Face string `bson:"face,omitempty" json:"face,omitempty"`

	UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
	CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
}

type UserModel

type UserModel interface {
	FindOneByUid(ctx context.Context, uid int64) (*User, error)
	DeleteByUid(ctx context.Context, uid int64) (int64, error)
	UpdateByUid(ctx context.Context, data *User) (*mongo.UpdateResult, error)
	AllocUserId(ctx context.Context, inc int64) (int64, error)
	// contains filtered or unexported methods
}

UserModel is an interface to be customized, add more methods here, and implement the added methods in customUserModel.

func NewUserModel

func NewUserModel(url, db string, c cache.CacheConf) UserModel

NewUserModel returns a model for the mongo.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL