packcopy 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. // 包装
  7. type Pack struct {
  8. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  9. Name string `bson:"name,omitempty" json:"name"`
  10. Thumbnail string `bson:"thumbnail,omitempty" json:"thumbnail"`
  11. // 部件数量
  12. CompCounts int `bson:"compCounts,omitempty" json:"compCounts"`
  13. // 设计师
  14. Designer string `bson:"designer,omitempty" json:"designer"`
  15. // 组成包装的部件
  16. Components []*PackComponent `bson:"components,omitempty" json:"components"`
  17. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  18. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  19. }
  20. type PackComponent struct {
  21. Id string `bson:"id,omitempty" json:"id"`
  22. Name string `bson:"name,omitempty" json:"name"`
  23. Thumbnail string `bson:"thumbnail,omitempty" json:"thumbnail"`
  24. //数量
  25. Count int `bson:"count,omitempty" json:"count"`
  26. //刀版图
  27. Uv string `bson:"uv,omitempty" json:"uv"`
  28. //部件尺寸
  29. UvSize string `bson:"uvSize,omitempty" json:"uvSize"`
  30. //所有材料
  31. Stages []*ComponentStage `bson:"stages,omitempty" json:"stages"`
  32. Remark string `bson:"remark,omitempty" json:"remark"`
  33. //部件总价
  34. TotalPrice float64 `bson:"totalPrice,omitempty" json:"totalPrice"`
  35. }
  36. type ComponentStage struct {
  37. Id string `bson:"id,omitempty" json:"id"`
  38. TypeId primitive.ObjectID `bson:"typeId,omitempty" json:"typeId"`
  39. // 下单单价
  40. OrderPrice float64 `bson:"orderPrice,omitempty" json:"orderPrice"`
  41. // 下单数量
  42. OrderCount int `bson:"orderCount,omitempty" json:"orderCount"`
  43. // 是否固定价格 如果是:为预算总价,不是:为实际总价
  44. IsFix *bool `bson:"isFix,omitempty" json:"isFix"`
  45. //实际价格 OrderPrice*ConfirmCount
  46. //预算价格 OrderPrice*OrderCount
  47. //确认收货数量
  48. ConfirmCount int `bson:"confirmCount,omitempty" json:"confirmCount"`
  49. // 供应相关信息
  50. // 交货时间
  51. DeliveryTime time.Time `bson:"deliveryTime,omitempty" json:"deliveryTime"`
  52. // 供应商信息
  53. SupplierInfo *Supplier `bson:"supplierInfo,omitempty" json:"supplierInfo"`
  54. BatchCount *float64 `bson:"batchCount,omitempty" json:"batchCount"` //拼版数量
  55. BatchSizeWidth int `bson:"batchSizeWidth,omitempty" json:"batchSizeWidth"` //平板尺寸
  56. BatchSizeHeight int `bson:"batchSizeHeight,omitempty" json:"batchSizeHeight"` //平板尺寸
  57. Remark string `bson:"remark,omitempty" json:"remark"` //备注
  58. Size string `bson:"size,omitempty" json:"size"` //工艺尺寸
  59. Name string `bson:"name,omitempty" json:"name"` //名称
  60. Category string `bson:"category,omitempty" json:"category"` //分类
  61. Price float64 `bson:"price,omitempty" json:"price"` //单价
  62. Unit string `bson:"unit,omitempty" json:"unit"` //单位
  63. Norm string `bson:"norm,omitempty" json:"norm"` // 规格
  64. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  65. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  66. Type int `bson:"type,omitempty" json:"type"` //1-材料 2-工艺 3-成品
  67. Group string `bson:"group,omitempty" json:"group"` //工序合标记,相同Group的数据合并成一个单据
  68. BillId string `bson:"billId,omitempty" json:"billId"` //订单Id
  69. BillType int `bson:"billType,omitempty" json:"billType"` //订单type // 1,2,3
  70. }