You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
493 B
23 lines
493 B
package base
|
|
|
|
import (
|
|
"github.com/mainnika/mongox-go-driver/mongox"
|
|
"github.com/mongodb/mongo-go-driver/bson/primitive"
|
|
)
|
|
|
|
var _ mongox.BaseObjectID = &ObjectID{}
|
|
|
|
// ObjectID is a structure with objectId as an _id field
|
|
type ObjectID struct {
|
|
ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"`
|
|
}
|
|
|
|
// GetID returns an _id
|
|
func (db *ObjectID) GetID() primitive.ObjectID {
|
|
return db.ID
|
|
}
|
|
|
|
// SetID sets an _id
|
|
func (db *ObjectID) SetID(id primitive.ObjectID) {
|
|
db.ID = id
|
|
}
|
|
|