1234567891011121314 |
- package model
- import (
- "time"
- "go.mongodb.org/mongo-driver/bson/primitive"
- )
- type Teams struct {
- ID primitive.ObjectID `bson:"_id,omitempty" json:"id,omitempty"`
- // TODO: Fill your own fields
- UpdateAt time.Time `bson:"updateAt,omitempty" json:"updateAt,omitempty"`
- CreateAt time.Time `bson:"createAt,omitempty" json:"createAt,omitempty"`
- }
|