user.go 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. type Sass struct {
  7. Title string
  8. Level int32
  9. Status string //使用中
  10. Exp time.Time
  11. }
  12. type EnvTheme struct {
  13. Id string `bson:"id,omitempty" json:"id"`
  14. // Options *Evn3dOption `bson:"options,omitempty" json:"options"`
  15. ToneMap *ToneMap `bson:"toneMap,omitempty" json:"toneMap"`
  16. // Background *SceneBackground `bson:"background,omitempty" json:"background"`
  17. }
  18. type EditorSetting struct {
  19. Themes []*EnvTheme `bson:"themes,omitempty" json:"themes"`
  20. ModelBaseColor *Vect3 `bson:"modelBaseColor,omitempty" json:"modelBaseColor"`
  21. DefaultEnv3dId string `bson:"defaultEnv3dId,omitempty" json:"defaultEnv3dId"`
  22. }
  23. type User struct {
  24. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  25. Phone string `bson:"phone,omitempty" json:"phone"`
  26. Password string `bson:"password,omitempty" json:"password"`
  27. Name string `bson:"name,omitempty" json:"name"`
  28. Company string `bson:"company,omitempty" json:"company"`
  29. Wechat string `bson:"wechat,omitempty" json:"wechat"`
  30. City string `bson:"city,omitempty" json:"city"`
  31. Alipay string `bson:"alipay,omitempty" json:"alipay,omitempty"`
  32. Avatar string `bson:"avatar,omitempty" json:"avatar,omitempty"`
  33. Desc string `bson:"desc,omitempty" json:"desc"`
  34. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime,omitempty"`
  35. Email string `bson:"email" json:"email,omitempty"`
  36. LastLogin time.Time `bson:"lastLogin,omitempty" json:"lastLogin,omitempty"`
  37. Saas *Sass `bson:"saas,omitempty" json:"saas,omitempty"`
  38. EditorSet *EditorSetting `bson:"editorSet,omitempty" json:"editorSet,omitempty"`
  39. CanDeployDesign *bool `bson:"canDeployDesign,omitempty" json:"canDeployDesign,omitempty"`
  40. Parent string `bson:"parent,omitempty" json:"parent,omitempty"` //主账号ID
  41. State int32 `bson:"state,omitempty" json:"state,omitempty"` //-1 用户已禁用
  42. Roles []string `bson:"roles,omitempty" json:"roles,omitempty"` //-1 用户已禁用
  43. Qiye *QiyeInfo `bson:"qiye,omitempty" json:"qiye,omitempty"` //企业信息
  44. IsPlatform *bool `bson:"isPlatform" json:"isPlatform,omitempty"`
  45. TeamId string `bson:"teamId,omitempty" json:"teamId,omitempty"` //用户团队Id
  46. // Cameras []*SceneCamera `bson:"cameras,omitempty" json:"cameras"` //用户的相机设置
  47. }
  48. type QiyeInfo struct {
  49. Name string `bson:"name,omitempty" json:"name,omitempty"` //名字
  50. Logo string `bson:"logo,omitempty" json:"logo,omitempty"` //logo
  51. Address string `bson:"address,omitempty" json:"address,omitempty"` //地址
  52. }
  53. func (u *User) GetID() string {
  54. return u.Id.Hex()
  55. }
  56. type SubAccount struct {
  57. Name string `bson:"name,omitempty" json:"name,omitempty"`
  58. Phone string `bson:"phone,omitempty" json:"phone,omitempty"`
  59. Password string `bson:"password,omitempty" json:"password,omitempty"`
  60. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime,omitempty"`
  61. LastLogin time.Time `bson:"lastLogin,omitempty" json:"lastLogin,omitempty"`
  62. UserId string `bson:"userId,omitempty" json:"userId,omitempty"`
  63. RoleIds []string `bson:"roles,omitempty" json:"roles,omitempty"` //用户角色
  64. TeamId string `bson:"teamId,omitempty" json:"teamId,omitempty"` //用户团队Id
  65. }
  66. type UserParent struct {
  67. }
  68. type Material1 struct {
  69. A int
  70. Type int
  71. }
  72. type Material2 struct {
  73. B int32
  74. Type int
  75. }