ice_raft.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package model
  2. import model2 "cold-delivery/common/model"
  3. const (
  4. IceRaftStatusNormal = "2"
  5. IceRaftStatusDisable = "1"
  6. )
  7. // 冰排
  8. type IceRaft struct {
  9. model2.Model
  10. Code string `json:"code" gorm:"size:128"` // 商品名称
  11. Status string `json:"status" gorm:"size:4;not null;default:'2';comment:状态"` // 1-停用 2-正常
  12. IceRaftRecordId int `json:"iceRaftRecordId" gorm:"size:128"` // 最新入库记录
  13. FreezeClaim float32 `json:"freezeClaim" gorm:"type:decimal(10,2);comment:冷冻要求"` // 冷冻要求 单位小时
  14. IceRaftRecord IceRaftRecordOmit `json:"iceRaftRecord" gorm:"->;foreignkey:IceRaftRecordId;references:Id"`
  15. Label string `json:"label" gorm:"size:128;comment:标签"` // 标签
  16. model2.ControlBy
  17. model2.ModelTime
  18. model2.DeptBy
  19. }
  20. type IceRaftOmit struct {
  21. Id int `json:"id,omitempty"` // 主键编码
  22. Code string `json:"code,omitempty"` // 商品名称
  23. }
  24. func (IceRaft) TableName() string {
  25. return "ice_raft"
  26. }
  27. func (IceRaftOmit) TableName() string {
  28. return "ice_raft"
  29. }
  30. const (
  31. IceRaftRecordStatusFreezing = "1" // 冷冻中
  32. IceRaftRecordStatusWaitUse = "2" // 待使用
  33. IceRaftRecordStatusUsing = "3" // 使用中
  34. IceRaftRecordStatusFinish = "4" // 已结束
  35. )
  36. func GetIceRaftRecordStatus(s string) string {
  37. switch s {
  38. case "":
  39. return "未入库"
  40. case IceRaftRecordStatusFreezing:
  41. return "冷冻中"
  42. case IceRaftRecordStatusWaitUse:
  43. return "待使用"
  44. case IceRaftRecordStatusUsing:
  45. return "使用中"
  46. case IceRaftRecordStatusFinish:
  47. return "已结束"
  48. }
  49. return ""
  50. }
  51. // 冰排记录
  52. type IceRaftRecord struct {
  53. model2.Model
  54. IceRaftId int `json:"iceRaftId" gorm:"size:128;comment:冰排id"`
  55. Status string `json:"status" gorm:"size:4;not null;default:'2';comment:状态"` // 0未入库 1-冷冻中 2-待使用 3-使用中 4已结束
  56. InStorageTime model2.Time `json:"inStorageTime" gorm:"size:128;comment:入库时间"` // 入库时间
  57. OutStorageTime model2.Time `json:"outStorageTime" gorm:"size:128;comment:出库时间"` // 出库时间
  58. IceLockerId int `json:"iceLockerId" gorm:"size:128;comment:冷冻柜id"` // 冷冻柜id
  59. CoolerBoxId int `json:"coolerBoxId" gorm:"size:128;comment:保温箱id"` // 保温箱id
  60. FreezeClaim float32 `json:"freezeClaim" gorm:"type:decimal(10,2);comment:冷冻要求"` // 冷冻要求 单位小时
  61. FreezeDuration int `json:"freezeDuration" gorm:"size:128;comment:冷冻时长"` // 冷冻时长 单位分钟
  62. IceLocker IceLockerOmit `json:"iceLocker" gorm:"->"`
  63. CoolerBox CoolerBoxOmit `json:"coolerBox" gorm:"->"`
  64. model2.ControlBy
  65. model2.ModelTime
  66. model2.DeptBy
  67. }
  68. type IceRaftRecordOmit struct {
  69. Id int `json:"id,omitempty"` // 主键编码
  70. IceRaftId int `json:"iceRaftId,omitempty"` // 冰排id
  71. Status string `json:"status"` // 1-停用 2-正常
  72. InStorageTime model2.Time `json:"inStorageTime,omitempty"` // 入库时间
  73. OutStorageTime model2.Time `json:"outStorageTime,omitempty"` // 出库时间
  74. IceLockerId int `json:"iceLockerId,omitempty"` // 冷冻柜id
  75. CoolerBoxId int `json:"coolerBoxId,omitempty"` // 保温箱id
  76. FreezeClaim float32 `json:"freezeClaim"` // 冷冻要求 单位小时
  77. FreezeDuration int `json:"freezeDuration"` // 冷冻时长 单位分钟
  78. IceLocker IceLockerOmit `json:"iceLocker" gorm:"->"`
  79. CoolerBox CoolerBoxOmit `json:"coolerBox" gorm:"->"`
  80. }
  81. func (IceRaftRecord) TableName() string {
  82. return "ice_raft_record"
  83. }
  84. func (IceRaftRecordOmit) TableName() string {
  85. return "ice_raft_record"
  86. }