user-qiye.go 1.0 KB

1234567891011121314151617181920212223242526
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. type UserPost struct { //人员职位
  7. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"` //职位ID
  8. Name string `bson:"name,omitempty" json:"name,omitempty"` //职位名称唯一、不能重复
  9. TreeLevel int32 `bson:"treeLevel,omitempty" json:"treeLevel,omitempty"` //职位等级
  10. Parent primitive.ObjectID `bson:"parent,omitempty" json:"parent"` //父级职
  11. }
  12. //联系我们
  13. type ContentInfo struct {
  14. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  15. Phone string `bson:"phone,omitempty" json:"phone"`
  16. Company string `bson:"company,omitempty" json:"company"`
  17. POST string `bson:"post,omitempty" json:"post"`
  18. City string `bson:"city,omitempty" json:"city"`
  19. Name string `bson:"name,omitempty" json:"name"`
  20. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  21. }