Files
crawlab/core/models/models/user_v2.go
2024-06-14 15:42:50 +08:00

11 lines
356 B
Go

package models
type UserV2 struct {
any `collection:"users"`
BaseModelV2[UserV2] `bson:",inline"`
Username string `json:"username" bson:"username"`
Password string `json:"-,omitempty" bson:"password"`
Role string `json:"role" bson:"role"`
Email string `json:"email" bson:"email"`
}