animeic 2 years ago
parent
commit
951b0678e5
1 changed files with 3 additions and 3 deletions
  1. 3 3
      boxcost/db/model/plan.go

+ 3 - 3
boxcost/db/model/plan.go

@@ -10,7 +10,7 @@ import (
 type ProductPlan struct {
 	Id   primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
 	Name string             `bson:"name,omitempty" json:"name"`
-	// 包装
+	// 包装 待生产的产品
 	Pack       *Pack  `bson:"pack,omitempty" json:"pack"`
 	Thumbnail  string `bson:"thumbnail,omitempty" json:"thumbnail"`
 	CreateUser string `bson:"createUser,omitempty" json:"createUser"`
@@ -56,10 +56,10 @@ type ProductUnit struct {
 	//最终数量
 	FinalCount float64 `bson:"finalCount,omitempty" json:"finalCount"`
 
-	//总价
+	//总价 需要计算
 	TotalPrice float64 `bson:"totalPrice,omitempty" json:"totalPrice"`
 
-	//交货时间
+	//交货时间 需要处理
 	DeliveryTime time.Time `bson:"deliveryTime,omitempty" json:"deliveryTime"`
 
 	//单价