Browse Source

fix category model

windows-pc 3 days ago
parent
commit
75c3046587
1 changed files with 1 additions and 0 deletions
  1. 1 0
      sku3d/sku3d/db/model/category.go

+ 1 - 0
sku3d/sku3d/db/model/category.go

@@ -10,6 +10,7 @@ type Category struct {
 	Id         primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
 	Type       string             `bson:"type,omitempty" json:"type"`
 	IdStr      string             `bson:"idStr,omitempty" json:"idStr"`
+	CusNum     string             `bson:"cusNum,omitempty" json:"cusNum"`
 	Name       string             `bson:"name,omitempty" json:"name"`
 	Children   []*Category        `bson:"children" json:"children"`
 	CreateTime time.Time          `bson:"createTime,omitempty" json:"createTime"`