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.
24 lines
474 B
24 lines
474 B
package oidbased
|
|
|
|
import (
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
"github.com/mainnika/mongox-go-driver/v2/mongox"
|
|
)
|
|
|
|
var _ mongox.OIDBased = (*Primary)(nil)
|
|
|
|
// Primary is a structure with objectId as the primary key
|
|
type Primary struct {
|
|
ID primitive.ObjectID `bson:"_id" json:"_id"`
|
|
}
|
|
|
|
// GetID returns an _id
|
|
func (p *Primary) GetID() (id primitive.ObjectID) {
|
|
return p.ID
|
|
}
|
|
|
|
// SetID sets an _id
|
|
func (p *Primary) SetID(id primitive.ObjectID) {
|
|
p.ID = id
|
|
}
|
|
|