Files
mongotest/pkg/models/user/user.go
T
2025-02-26 15:17:18 +07:00

16 lines
308 B
Go

package user
type User struct {
ID string `bson:"_id"`
Name string `bson:"name"`
Age int `bson:"age"`
Address string `bson:"address"`
}
type ReqInsertUser struct {
ID string `bson:"_id"`
Name string `bson:"name"`
Age int `bson:"age"`
Address string `bson:"address"`
}