neck_ring_estrus_warning.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type NeckRingEstrusWarning struct {
  4. Id int64 `json:"id"`
  5. NeckRingEstrusId int64 `json:"neckRingEstrusId"`
  6. PastureId int64 `json:"pastureId"`
  7. CowId int64 `json:"cowId"`
  8. EarNumber string `json:"earNumber"`
  9. FirstTime string `json:"firstTime"`
  10. DateTime string `json:"dateTime"`
  11. LastTime string `json:"lastTime"`
  12. IsPeak pasturePb.IsShow_Kind `json:"isPeak"`
  13. WarningKind pasturePb.Warning_Kind `json:"warningKind"`
  14. Level pasturePb.EstrusLevel_Kind `json:"level"`
  15. HighChange string `json:"highChange"`
  16. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  17. CreatedAt int64 `json:"createdAt"`
  18. UpdatedAt int64 `json:"updatedAt"`
  19. }
  20. func (n *NeckRingEstrusWarning) TableName() string {
  21. return "neck_ring_estrus_warning"
  22. }
  23. func NewNeckRingEstrusWarning(
  24. neckRingEstrusId, pastureId, cowId int64,
  25. earNumber, firstTime, dateTime, lastTime string,
  26. warningKind pasturePb.Warning_Kind,
  27. level pasturePb.EstrusLevel_Kind,
  28. ) *NeckRingEstrusWarning {
  29. return &NeckRingEstrusWarning{
  30. NeckRingEstrusId: neckRingEstrusId,
  31. PastureId: pastureId,
  32. CowId: cowId,
  33. EarNumber: earNumber,
  34. FirstTime: firstTime,
  35. DateTime: dateTime,
  36. LastTime: lastTime,
  37. WarningKind: warningKind,
  38. Level: level,
  39. IsShow: pasturePb.IsShow_Ok,
  40. }
  41. }
  42. type NeckRingEstrusWarningSlice []*NeckRingEstrusWarning
  43. func (n NeckRingEstrusWarningSlice) ToPB(cowMap map[int64]*Cow, eventLogMap map[int64]string) []*pasturePb.EstrusItems {
  44. res := make([]*pasturePb.EstrusItems, len(n))
  45. for i, v := range n {
  46. cow, ok := cowMap[v.CowId]
  47. if !ok {
  48. cow = &Cow{Id: v.CowId}
  49. }
  50. lastBreedEventDetails := ""
  51. desc, ok := eventLogMap[cow.Id]
  52. if ok {
  53. lastBreedEventDetails = desc
  54. }
  55. res[i] = &pasturePb.EstrusItems{
  56. Id: int32(v.Id),
  57. CowId: int32(v.CowId),
  58. EarNumber: v.EarNumber,
  59. PenId: cow.PenId,
  60. PenName: cow.PenName,
  61. DayAge: cow.DayAge,
  62. MatingTimes: cow.MatingTimes,
  63. Lact: cow.Lact,
  64. CalvingAge: cow.CalvingAge,
  65. AbortionAge: cow.AbortionAge,
  66. OptimumMatingStartTime: "",
  67. OptimumMatingEndTime: "",
  68. LastBreedEventDetails: lastBreedEventDetails,
  69. Level: v.Level,
  70. EstrusInterval: 0,
  71. }
  72. }
  73. return res
  74. }
  75. const (
  76. Nb1 = 12
  77. Nb2 = 8
  78. MinNb1 = 10
  79. )
  80. type EstrusWarning struct {
  81. NeckRingEstrusId int64 `json:"neckRingEstrusId"`
  82. HighChange string `json:"highChange"`
  83. CowId int64 `json:"cowId"`
  84. DateTime string `json:"dateTime"`
  85. Nb1 int32 `json:"nb1"`
  86. Nb2 int32 `json:"nb2"`
  87. }