|
@@ -31,9 +31,3 @@ type OrderProduct struct {
|
|
ExpressNo string `bson:"expressNo,omitempty" json:"expressNo"` // 快递单号,商家发货时需要输入
|
|
ExpressNo string `bson:"expressNo,omitempty" json:"expressNo"` // 快递单号,商家发货时需要输入
|
|
Status int `bson:"status,omitempty" json:"status"` // -1:待发货 1:已发货
|
|
Status int `bson:"status,omitempty" json:"status"` // -1:待发货 1:已发货
|
|
}
|
|
}
|
|
-
|
|
|
|
-type OrderCustomerUser struct {
|
|
|
|
- Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"` // id
|
|
|
|
- Avatar primitive.ObjectID `bson:"avatar,omitempty" json:"avatar"` // 头像
|
|
|
|
- Name string `bson:"name,omitempty" json:"name"` // 客户名字
|
|
|
|
-}
|
|
|