neck_ring_original.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package model
  2. import (
  3. "math"
  4. "strconv"
  5. "strings"
  6. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  7. )
  8. type NeckRingOriginal struct {
  9. Id int64 `json:"id"`
  10. Uuid string `json:"uuid"`
  11. FrameId int32 `json:"frameId"`
  12. Low int32 `json:"low"`
  13. High int32 `json:"high"`
  14. Rumina int32 `json:"rumina"`
  15. Active int32 `json:"active"`
  16. Intake int32 `json:"intake"`
  17. Inactive int32 `json:"inactive"`
  18. Other int32 `json:"other"`
  19. Voltage int32 `json:"voltage"`
  20. Upper int32 `json:"upper"`
  21. Version int32 `json:"version"`
  22. Sign int32 `json:"sign"`
  23. Remain int32 `json:"remain"`
  24. Feed int32 `json:"feed"`
  25. Imei string `json:"imei" `
  26. Temp int32 `json:"temp"`
  27. Gasp int32 `json:"gasp"`
  28. Hours int32 `json:"hours"`
  29. ActiveDate string `json:"activeDate"`
  30. ActiveDateType pasturePb.ActiveTimeType_Kind `json:"ActiveDateTimeType"`
  31. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  32. ReceiveNumber string `json:"receiveNumber"`
  33. ShortReceiveNumber string `json:"shortReceiveNumber"`
  34. CreatedAt int64 `json:"createdAt"`
  35. UpdatedAt int64 `json:"updatedAt"`
  36. }
  37. func (n *NeckRingOriginal) TableName() string {
  38. return "neck_ring_original"
  39. }
  40. var (
  41. AvgHours = int32(6)
  42. JoinKey = "/"
  43. )
  44. func (n *NeckRingOriginal) IsAvgHours() {
  45. if n.ActiveDateType == pasturePb.ActiveTimeType_Two_Hours {
  46. n.Remain *= AvgHours
  47. n.Inactive *= AvgHours
  48. n.Active *= AvgHours
  49. n.Intake *= AvgHours
  50. n.Other *= AvgHours
  51. n.Gasp *= AvgHours
  52. n.High *= AvgHours
  53. n.High = int32(math.Min(1800, float64(n.Other)))
  54. }
  55. }
  56. type NeckRingOriginalMerge struct {
  57. Rumina int32
  58. Inactive int32
  59. Active int32
  60. Intake int32
  61. Other int32
  62. High int32
  63. Gasp int32
  64. ActiveDateType pasturePb.ActiveTimeType_Kind
  65. }
  66. func (n *NeckRingOriginalMerge) IsMageData(data *NeckRingOriginal) {
  67. n.Rumina += data.Rumina
  68. n.Inactive += data.Inactive
  69. n.Active += data.Active
  70. n.Intake += data.Intake
  71. n.Other += data.Other
  72. n.Gasp += data.Gasp
  73. n.High += data.High
  74. }
  75. func (n *NeckRingOriginalMerge) SumAvg() {
  76. n.Rumina = n.Rumina / AvgHours * AvgHours
  77. n.Inactive = n.Inactive / AvgHours * AvgHours
  78. n.Active = n.Active / AvgHours * AvgHours
  79. n.Intake = n.Intake / AvgHours * AvgHours
  80. n.Other = n.Other / AvgHours * AvgHours
  81. n.Gasp = n.Gasp / AvgHours * AvgHours
  82. n.High = n.High / AvgHours * AvgHours
  83. }
  84. type NeckRingOriginalMap map[string]*NeckRingOriginalMerge
  85. func (n NeckRingOriginalMap) ForMatData(defaultWeeklyActive int32, getCowInfo func(string) *Cow) []*NeckActiveHabit {
  86. res := make([]*NeckActiveHabit, 0)
  87. for key, v := range n {
  88. keyStrList := strings.Split(key, JoinKey)
  89. if len(keyStrList) != 3 {
  90. continue
  91. }
  92. imei := keyStrList[0]
  93. activeDate := keyStrList[1]
  94. frameId := keyStrList[2]
  95. frameIdInt, _ := strconv.Atoi(frameId)
  96. cowInfo := getCowInfo(imei)
  97. res = append(res, NewNeckActiveHabit(defaultWeeklyActive, int32(frameIdInt), activeDate, imei, cowInfo, v))
  98. }
  99. return res
  100. }