ice_raft.go 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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 model2.FloatList `json:"freezeClaim" gorm:"type:json;comment:冷冻要求"` // 冷冻要求 单位小时
  14. IceRaftRecord IceRaftRecordOmit `json:"iceRaftRecord" gorm:"->;foreignkey:IceRaftRecordId;references:Id"`
  15. Label string `json:"label" gorm:"size:128;comment:标签"` // 标签
  16. IceColdAddress string `json:"iceColdAddress" gorm:"size:128;comment:冰排预冷地点"` //冰排预冷地点
  17. SuitableForCold float32 `json:"suitableForCold" gorm:"type:decimal(10,2);comment:冰排适冷温度"` // 冰排遇冷温度
  18. model2.ControlBy
  19. model2.ModelTime
  20. model2.DeptBy
  21. }
  22. type IceRaftOmit struct {
  23. Id int `json:"id,omitempty"` // 主键编码
  24. Code string `json:"code,omitempty"` // 商品名称
  25. }
  26. func (IceRaft) TableName() string {
  27. return "ice_raft"
  28. }
  29. func (IceRaftOmit) TableName() string {
  30. return "ice_raft"
  31. }
  32. const (
  33. IceRaftRecordStatusFreezing = "1" // 冷冻中
  34. IceRaftRecordStatusWaitUse = "2" // 待使用
  35. IceRaftRecordStatusUsing = "3" // 使用中
  36. IceRaftRecordStatusFinish = "4" // 已结束
  37. IceRaftRecordReleasedInTheCold = "5" // 释冷中
  38. )
  39. func GetIceRaftRecordStatus(s string) string {
  40. switch s {
  41. case "":
  42. return "未入库"
  43. case IceRaftRecordStatusFreezing:
  44. return "冷冻中"
  45. case IceRaftRecordStatusWaitUse:
  46. return "待使用"
  47. case IceRaftRecordStatusUsing:
  48. return "使用中"
  49. case IceRaftRecordStatusFinish:
  50. return "已结束"
  51. case IceRaftRecordReleasedInTheCold:
  52. return "释冷中"
  53. }
  54. return ""
  55. }
  56. // 冰排记录
  57. type IceRaftRecord struct {
  58. model2.Model
  59. IceRaftId int `json:"iceRaftId" gorm:"size:128;comment:冰排id"`
  60. Label string `json:"label" gorm:"size:128;comment:标签"` // 标签
  61. Code string `json:"code" gorm:"size:128;comment:编号"` // 编号
  62. Status string `json:"status" gorm:"size:4;not null;default:'2';comment:状态"` // 0未入库 1-冷冻中 2-待使用 3-使用中 4已结束 5-释冷中
  63. InStorageTime model2.Time `json:"inStorageTime" gorm:"size:128;comment:入库时间"` // 入库时间
  64. OutStorageTime model2.Time `json:"outStorageTime" gorm:"size:128;comment:出库时间"` // 出库时间
  65. IceLockerId int `json:"iceLockerId" gorm:"size:128;comment:冷冻柜id"` // 冷冻柜id
  66. CoolerBoxId int `json:"coolerBoxId" gorm:"size:128;comment:保温箱id"` // 保温箱id
  67. FreezeClaim model2.FloatList `json:"freezeClaim" gorm:"type:json;comment:冷冻要求"` // 冷冻要求 单位小时
  68. FreezeDuration int `json:"freezeDuration" gorm:"size:128;comment:冷冻时长"` // 冷冻时长 单位分钟
  69. SuitableForCold float32 `json:"suitableForCold" gorm:"type:decimal(10,2);comment:冰排适冷温度"` // 冰排适冷温度
  70. EndForColdTime model2.Time `json:"endForColdTime" gorm:"size:128;comment:适冷结束时间"` // 适冷结束时间
  71. IsSuitableForCold int `json:"isSuitableForCold" gorm:"size:4;not null;comment:是否结束适冷"` //0 未适冷 1已适冷
  72. CoolerBoxStarTime model2.Time `json:"coolerBoxStarTime" gorm:"size:128;comment:保温箱开始预冷时间"` //保温箱开始预冷时间
  73. CoolerBoxEndTime model2.Time `json:"coolerBoxEndTime" gorm:"size:128;comment:保温箱结束记录时间"` //保温箱结束记录时间
  74. StartIceColdTime model2.Time `json:"start_ice_cold_time" gorm:"size:128;comment:释冷开始时间"` //冰排释冷开始时间
  75. IceColdAddress string `json:"ice_cold_address" gorm:"size:128;comment:冰排预冷地点"` //冰排预冷地点
  76. IceColdUsers string `json:"ice_cold_users" gorm:"size:128;comment:冰排预冷操作人员"` //冰排预冷操作人员
  77. IceUseUsers string `json:"ice_use_users" gorm:"size:128;comment:冰排使用操作人员"` //冰排使用操作人员
  78. IceUseTime model2.Time `json:"ice_use_time" gorm:"size:128;comment:冰排使用时间"` //冰排使用时间
  79. CoolerColdAddress string `json:"cooler-cold-address" gorm:"size:128;comment:保温箱预冷地点"` //保温箱预冷地点
  80. CoolerColdUsers string `json:"cooler-cold-users" gorm:"size:128;comment:保温箱预冷操作人员"` //保温箱预冷操作人员
  81. CoolerUseUsers string `json:"cooler-use-users" gorm:"size:128;comment:保温箱使用操作人员"` //保温箱使用操作人员
  82. IceLocker IceLockerOmit `json:"iceLocker" gorm:"->"`
  83. CoolerBox CoolerBoxOmit `json:"coolerBox" gorm:"->"`
  84. CoolerBoxRecord CoolerBoxRecord `json:"coolerBoxRecord" gorm:"-"`
  85. model2.ControlBy
  86. model2.ModelTime
  87. model2.DeptBy
  88. }
  89. type IceRaftRecordOmit struct {
  90. Id int `json:"id,omitempty"` // 主键编码
  91. IceRaftId int `json:"iceRaftId,omitempty"` // 冰排id
  92. Status string `json:"status"` // 1-停用 2-正常
  93. InStorageTime model2.Time `json:"inStorageTime,omitempty"` // 入库时间
  94. OutStorageTime model2.Time `json:"outStorageTime,omitempty"` // 出库时间
  95. IceLockerId int `json:"iceLockerId,omitempty"` // 冷冻柜id
  96. CoolerBoxId int `json:"coolerBoxId,omitempty"` // 保温箱id
  97. FreezeClaim model2.FloatList `json:"freezeClaim" gorm:"type:json;comment:冷冻要求"` // 冷冻要求 单位小时
  98. FreezeDuration int `json:"freezeDuration"` // 冷冻时长 单位分钟
  99. SuitableForCold float32 `json:"suitableForCold" ` // 冰排适冷温度
  100. EndForColdTime model2.Time `json:"endForColdTime" ` // 适冷结束时间
  101. IsSuitableForCold int `json:"isSuitableForCold" ` //0 未适冷 1已适冷
  102. StartIceColdTime model2.Time `json:"start_ice_cold_time" gorm:"size:128;comment:释冷开始时间"` //冰排释冷开始时间
  103. IceColdAddress string `json:"ice_cold_address" gorm:"size:128;comment:冰排预冷地点"` //冰排预冷地点
  104. IceColdUsers string `json:"ice_cold_users" gorm:"size:128;comment:冰排预冷操作人员"` //冰排预冷操作人员
  105. IceUseUsers string `json:"ice_use_users" gorm:"size:128;comment:冰排使用操作人员"` //冰排使用操作人员
  106. IceUseTime model2.Time `json:"ice_use_time" gorm:"size:128;comment:冰排使用时间"` //冰排使用时间
  107. CoolerColdAddress string `json:"cooler-cold-address" gorm:"size:128;comment:保温箱预冷地点"` //保温箱预冷地点
  108. CoolerColdUsers string `json:"cooler-cold-users" gorm:"size:128;comment:保温箱预冷操作人员"` //保温箱预冷操作人员
  109. CoolerUseUsers string `json:"cooler-use-users" gorm:"size:128;comment:保温箱使用操作人员"` //保温箱使用操作人员
  110. IceLocker IceLockerOmit `json:"iceLocker" gorm:"->"`
  111. CoolerBox CoolerBoxOmit `json:"coolerBox" gorm:"->"`
  112. }
  113. func (IceRaftRecord) TableName() string {
  114. return "ice_raft_record"
  115. }
  116. func (IceRaftRecordOmit) TableName() string {
  117. return "ice_raft_record"
  118. }