productTpl.go 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. type ProductTplComponent struct {
  7. Name string `bson:"name,omitempty" json:"name"`
  8. CreateType uint8 `bson:"createType,omitempty" json:"createType"` //0-模型创建 1-dynamic 动态生成
  9. Label string `bson:"label,omitempty" json:"label"` //ui 显示的名字
  10. UV *struct {
  11. Width uint `bson:"width,omitempty" json:"width"`
  12. Height uint `bson:"height,omitempty" json:"height"`
  13. Image OssType `bson:"image,omitempty" json:"image"`
  14. } `bson:"uv,omitempty" json:"uv"`
  15. }
  16. type ProductTpl struct {
  17. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  18. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  19. MeshId primitive.ObjectID `bson:"meshId,omitempty" json:"meshId"`
  20. Name string `bson:"name,omitempty" json:"name"`
  21. Thumbnail *OssType `bson:"thumbnail,omitempty" json:"thumbnail"`
  22. Components []*ProductTplComponent `bson:"components,omitempty" json:"components"` //模板部件
  23. IsPublic *bool `bson:"isPublic,omitempty" json:"isPublic"` //是否公开
  24. }