animeic 2 éve
szülő
commit
16c1aab39a
1 módosított fájl, 4 hozzáadás és 13 törlés
  1. 4 13
      boxcost/db/model/process.go

+ 4 - 13
boxcost/db/model/process.go

@@ -51,20 +51,11 @@ type ProcessBill struct {
 
 type ProcessData struct {
 	Id string `bson:"id,omitempty" json:"id"`
-
 	//所有工艺
-	ProcessInfo *Process `bson:"crafts,omitempty" json:"crafts"`
-
-	Supplier *SupplierPriceVo `bson:"supplier,omitempty" json:"supplier"`
-
-	BatchCount      int `bson:"batchCount,omitempty" json:"batchCount"`           //拼版数量
-	BatchSizeWidth  int `bson:"batchSizeWidth,omitempty" json:"batchSizeWidth"`   //平板尺寸
-	BatchSizeHeight int `bson:"batchSizeHeight,omitempty" json:"batchSizeHeight"` //平板尺寸
-
-	BillId string `bson:"billId,omitempty" json:"billId"`
-
-	Remark string `bson:"remark,omitempty" json:"remark"` //备注
-
+	ProcessInfo *Process         `bson:"crafts,omitempty" json:"crafts"`
+	Supplier    *SupplierPriceVo `bson:"supplier,omitempty" json:"supplier"`
+	BillId      string           `bson:"billId,omitempty" json:"billId"`
+	Remark      string           `bson:"remark,omitempty" json:"remark"` //备注
 	//确认收货数量
 	ConfirmCount int `bson:"confirmCount,omitempty" json:"confirmCount"`
 }