neck_ring_original.go 3.9 KB

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