neck_active_habit.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package model
  2. import (
  3. "fmt"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. const (
  7. DefaultChangeFilter = -10000
  8. DefaultRuminaFilter = -10000
  9. DefaultChewFilter = -10000
  10. DefaultFilterCorrect = 100
  11. )
  12. type NeckActiveHabit struct {
  13. Id int64 `json:"id"`
  14. CowId int64 `json:"cowId"`
  15. NeckRingNumber string `json:"neckRingNumber"`
  16. Lact int32 `json:"lact"`
  17. CalvingAge int64 `json:"calvingAge"`
  18. Frameid int32 `json:"frameid"`
  19. HeatDate string `json:"heatDate"`
  20. Rumina int32 `json:"rumina"`
  21. Intake int32 `json:"intake"`
  22. Inactive int32 `json:"inactive"`
  23. Gasp int32 `json:"gasp"`
  24. Other int32 `json:"other"`
  25. High int32 `json:"high"`
  26. Active int32 `json:"active"`
  27. Voltage int32 `json:"voltage"`
  28. Version int32 `json:"version"`
  29. FilterHigh int32 `json:"filterHigh"`
  30. FilterRumina int32 `json:"filterRumina"`
  31. FilterChew int32 `json:"filterChew"`
  32. WeekHigh int32 `json:"weekHigh"`
  33. AvgHighHabit int32 `json:"avgHighHabit"`
  34. AvgRuminaHabit int32 `json:"avgRuminaHabit"`
  35. AvgIntakeHabit int32 `json:"avgIntakeHabit"`
  36. AvgChewHabit int32 `json:"avgChewHabit"`
  37. AvgInactiveHabit int32 `json:"avgInactiveHabit"`
  38. AvgOtherHabit int32 `json:"avgOtherHabit"`
  39. ChangeHigh int32 `json:"changeHigh"`
  40. ChangeRumina int32 `json:"changeRumina"`
  41. ChangeChew int32 `json:"changeChew"`
  42. ChangeAdjust int32 `json:"changeAdjust"`
  43. ChangeFilter int32 `json:"changeFilter"`
  44. RuminaFilter int32 `json:"ruminaFilter"`
  45. ChewFilter int32 `json:"chewFilter"`
  46. FilterCorrect int32 `json:"filterCorrect"`
  47. SumRumina int32 `json:"sumRumina"`
  48. SumIntake int32 `json:"sumIntake"`
  49. SumInactive int32 `json:"sumInactive"`
  50. SumAct int32 `json:"sumAct"`
  51. SumMinHigh int32 `json:"sumMinHigh"`
  52. SumMaxHigh int32 `json:"sumMaxHigh"`
  53. SumMinChew int32 `json:"SumMinChew"`
  54. SumRuminaBeforeThreeDay int32 `json:"sumRuminaBeforeThreeDay"`
  55. SumIntakeBeforeThreeDay int32 `json:"sumIntakeBeforeThreeDay"`
  56. Score int32 `json:"score"`
  57. IsMaxTime pasturePb.IsShow_Kind `json:"isMaxTime"`
  58. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  59. ReceiveNumber int32 `json:"receiveNumber"`
  60. RecordCount int32 `json:"recordCount"`
  61. ActiveTime string `json:"activeTime"`
  62. CreatedAt int64 `json:"createdAt"`
  63. UpdatedAt int64 `json:"updatedAt"`
  64. }
  65. func (n *NeckActiveHabit) TableName() string {
  66. return "neck_active_habit"
  67. }
  68. func NewNeckActiveHabit(defaultWeeklyActive, frameId int32, heatDate, neckRingNumber string, cow *Cow, data *NeckRingOriginalMerge) *NeckActiveHabit {
  69. cowId := int64(0)
  70. lact := int32(0)
  71. if cow != nil {
  72. cowId = cow.Id
  73. lact = cow.Lact
  74. }
  75. weekHigh := cow.WeeklyActive
  76. if cow.WeeklyActive == 0 {
  77. weekHigh = defaultWeeklyActive
  78. }
  79. return &NeckActiveHabit{
  80. Frameid: frameId,
  81. HeatDate: heatDate,
  82. NeckRingNumber: neckRingNumber,
  83. Lact: lact,
  84. CalvingAge: cow.CalvingAge,
  85. CowId: cowId,
  86. Active: data.Active,
  87. Gasp: data.Gasp,
  88. High: data.High,
  89. Inactive: data.Inactive,
  90. Intake: data.Intake,
  91. Other: data.Other,
  92. Rumina: data.Rumina,
  93. WeekHigh: weekHigh,
  94. IsShow: pasturePb.IsShow_No,
  95. IsMaxTime: pasturePb.IsShow_No,
  96. ChangeFilter: DefaultChangeFilter,
  97. FilterCorrect: DefaultFilterCorrect,
  98. RuminaFilter: DefaultRuminaFilter,
  99. ChewFilter: DefaultChewFilter,
  100. ActiveTime: fmt.Sprintf("%s %02d:00:00", heatDate, frameId),
  101. }
  102. }
  103. func (n *NeckActiveHabit) MergeData(data *NeckActiveHabit) {
  104. n.Rumina += data.Rumina
  105. n.Inactive += data.Inactive
  106. n.Active += data.Active
  107. n.Intake += data.Intake
  108. n.Other += data.Other
  109. n.Gasp += data.Gasp
  110. n.High += data.High
  111. }