supplier.go 1002 B

123456789101112131415161718192021222324252627
  1. package model
  2. import (
  3. "time"
  4. "go.mongodb.org/mongo-driver/bson/primitive"
  5. )
  6. // 供应商
  7. type Supplier struct {
  8. Id primitive.ObjectID `bson:"_id,omitempty" json:"_id"`
  9. Name string `bson:"name,omitempty" json:"name"`
  10. Address string `bson:"address,omitempty" json:"address"`
  11. Phone string `bson:"phone,omitempty" json:"phone"`
  12. Categorys []string `bson:"categorys,omitempty" json:"categorys"` // 多个分类
  13. Category string `bson:"category,omitempty" json:"category"` // todo 旧的待删除
  14. CreateTime time.Time `bson:"createTime,omitempty" json:"createTime"`
  15. UpdateTime time.Time `bson:"updateTime,omitempty" json:"updateTime"`
  16. }
  17. type PriceStrategy struct {
  18. Type string `bson:"type,omitempty" json:"type"`
  19. //same
  20. Param1 float64 `bson:"param1,omitempty" json:"param1"`
  21. Param2 float64 `bson:"param2,omitempty" json:"param2"`
  22. Param3 float64 `bson:"param3,omitempty" json:"param3"`
  23. }