neck_ring_estrus_warning.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. const IntCurFetal = 3
  7. type NeckRingEstrusWarning struct {
  8. Id int64 `json:"id"`
  9. NeckRingEstrusId int64 `json:"neckRingEstrusId"`
  10. PastureId int64 `json:"pastureId"`
  11. CowId int64 `json:"cowId"`
  12. EarNumber string `json:"earNumber"`
  13. FirstTime string `json:"firstTime"`
  14. DateTime string `json:"dateTime"`
  15. LastTime string `json:"lastTime"`
  16. IsPeak pasturePb.IsShow_Kind `json:"isPeak"`
  17. WarningKind pasturePb.Warning_Kind `json:"warningKind"`
  18. Level pasturePb.EstrusLevel_Kind `json:"level"`
  19. HighChange string `json:"highChange"`
  20. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  21. CreatedAt int64 `json:"createdAt"`
  22. UpdatedAt int64 `json:"updatedAt"`
  23. }
  24. func (n *NeckRingEstrusWarning) TableName() string {
  25. return "neck_ring_estrus_warning"
  26. }
  27. func NewNeckRingEstrusWarning(
  28. neckRingEstrusId, pastureId, cowId int64,
  29. earNumber, firstTime, dateTime, lastTime string,
  30. warningKind pasturePb.Warning_Kind,
  31. level pasturePb.EstrusLevel_Kind,
  32. ) *NeckRingEstrusWarning {
  33. return &NeckRingEstrusWarning{
  34. NeckRingEstrusId: neckRingEstrusId,
  35. PastureId: pastureId,
  36. CowId: cowId,
  37. EarNumber: earNumber,
  38. FirstTime: firstTime,
  39. DateTime: dateTime,
  40. LastTime: lastTime,
  41. WarningKind: warningKind,
  42. Level: level,
  43. IsShow: pasturePb.IsShow_Ok,
  44. }
  45. }
  46. // calculatePzHour 计算最佳配置时间
  47. func (n *NeckRingEstrusWarning) calculatePzHour(lact int32) time.Time {
  48. var pzHour time.Time
  49. dateTime := n.DateTime
  50. firstTime := n.FirstTime
  51. // 条件判断
  52. if n.IsPeak == pasturePb.IsShow_Ok || n.DateTime.Sub(n.FirstTime).Hours() >= 8 {
  53. pzHour = n.DateTime.Add(8 * time.Hour) // v.datetime + INTERVAL 8 HOUR
  54. } else {
  55. pzHour = n.FirstTime.Add(16 * time.Hour) // v.firsttime + INTERVAL 16 HOUR
  56. }
  57. // 时间调整
  58. if lact >= 3 {
  59. pzHour = pzHour.Add(-1 * time.Hour) // 减去 1 小时
  60. }
  61. return pzHour
  62. }
  63. type NeckRingEstrusWarningSlice []*NeckRingEstrusWarning
  64. func (n NeckRingEstrusWarningSlice) ToPB(cowMap map[int64]*Cow, eventLogMap map[int64]string) []*pasturePb.EstrusItems {
  65. res := make([]*pasturePb.EstrusItems, len(n))
  66. for i, v := range n {
  67. cow, ok := cowMap[v.CowId]
  68. if !ok {
  69. cow = &Cow{Id: v.CowId}
  70. }
  71. lastBreedEventDetails := ""
  72. desc, ok := eventLogMap[cow.Id]
  73. if ok {
  74. lastBreedEventDetails = desc
  75. }
  76. pzHour := v.calculatePzHour(cow.Lact)
  77. res[i] = &pasturePb.EstrusItems{
  78. Id: int32(v.Id),
  79. CowId: int32(v.CowId),
  80. EarNumber: v.EarNumber,
  81. PenId: cow.PenId,
  82. PenName: cow.PenName,
  83. DayAge: cow.DayAge,
  84. MatingTimes: cow.MatingTimes,
  85. Lact: cow.Lact,
  86. CalvingAge: cow.CalvingAge,
  87. AbortionAge: cow.AbortionAge,
  88. OptimumMatingStartTime: "",
  89. OptimumMatingEndTime: "",
  90. LastBreedEventDetails: lastBreedEventDetails,
  91. Level: v.Level,
  92. EstrusInterval: 0,
  93. }
  94. }
  95. return res
  96. }
  97. const (
  98. Nb1 = 12
  99. Nb2 = 8
  100. MinNb1 = 10
  101. )
  102. type EstrusWarning struct {
  103. NeckRingEstrusId int64 `json:"neckRingEstrusId"`
  104. HighChange string `json:"highChange"`
  105. CowId int64 `json:"cowId"`
  106. DateTime string `json:"dateTime"`
  107. Nb1 int32 `json:"nb1"`
  108. Nb2 int32 `json:"nb2"`
  109. }
  110. type DashboardNeckRingEstrusWarning struct {
  111. Level pasturePb.EstrusLevel_Kind
  112. Count int32
  113. }