animeic 2 年 前
コミット
57132d1b07
2 ファイル変更2 行追加2 行削除
  1. 1 1
      3dshow-customer/db/model/order.go
  2. 1 1
      3dshow-customer/db/model/product.go

+ 1 - 1
3dshow-customer/db/model/order.go

@@ -30,7 +30,7 @@ type OrderProduct struct {
 	Unit      string             `bson:"unit,omitempty" json:"unit"`           // 型号
 	Cover     string             `bson:"cover,omitempty" json:"cover"`         // 封面图
 	ExpressNo string             `bson:"expressNo,omitempty" json:"expressNo"` // 快递单号,商家发货时需要输入
-	Status    int                `bson:"status,omitempty" json:"status"`       // -1:待发货 1:已发货 2:已完成 3取消
+	Status    int                `bson:"status,omitempty" json:"status"`       // -1:待发货 1:已发货 2:已完成 3:取消
 }
 
 type OrderAddReq struct {

+ 1 - 1
3dshow-customer/db/model/product.go

@@ -12,7 +12,7 @@ type Product struct {
 	SupplyId   primitive.ObjectID `bson:"supplyId,omitempty" json:"supplyId"`
 	SenceId    primitive.ObjectID `bson:"senceId,omitempty" json:"senceId"` // 场景id,3d展示
 	Name       string             `bson:"name,omitempty" json:"name"`
-	Type       string             `bson:"type,omitempty" json:"type"` // 类型
+	Type       string             `bson:"type,omitempty" json:"type"` // 类型 单鞋:shoes 凉鞋:sandals 靴子:boots
 	Unit       string             `bson:"unit,omitempty" json:"unit"` // 型号
 	Price      float64            `bson:"price,omitempty" json:"price"`
 	Cover      string             `bson:"cover,omitempty" json:"cover"` // 封面图