cooler_box.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package model
  2. import (
  3. model2 "cold-delivery/common/model"
  4. natsModel "cold-delivery/common/nats/nats_server"
  5. )
  6. const (
  7. CoolerBoxStatusNormal = "2"
  8. CoolerBoxStatusDisable = "1"
  9. )
  10. // 保温箱
  11. type CoolerBox struct {
  12. model2.Model
  13. Name string `json:"name" gorm:"size:128"` // 商品名称
  14. Sn string `json:"sn" gorm:"size:128"` // sn
  15. Status string `json:"status" gorm:"size:4;not null;default:'2';comment:状态"` // 1-停用 2-正常
  16. HistorySn model2.StringList `json:"historySn"` // 历史绑定的sn
  17. DeviceData natsModel.DeviceData_R2 `json:"deviceData" gorm:"-"`
  18. model2.ControlBy
  19. model2.ModelTime
  20. model2.DeptBy
  21. }
  22. type CoolerBoxOmit struct {
  23. Id int `json:"id,omitempty"` // 主键编码
  24. Name string `json:"name,omitempty"` // 商品名称
  25. }
  26. func (CoolerBox) TableName() string {
  27. return "cooler_box"
  28. }
  29. func (CoolerBoxOmit) TableName() string {
  30. return "cooler_box"
  31. }