event_estrus.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package model
  2. import (
  3. "fmt"
  4. "kpt-pasture/store/kptstore"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type EventEstrus struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. NeckRingNumber string `json:"neckRingNumber"`
  11. CowId int64 `json:"cowId"`
  12. Lact int32 `json:"lact"`
  13. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  14. EstrusStartDate string `json:"estrusStartDate"`
  15. ActiveDate string `json:"activeDate"`
  16. LastEstrusDate string `json:"lastEstrusDate"`
  17. Level pasturePb.EstrusLevel_Kind `json:"level"`
  18. IsPeak pasturePb.IsShow_Kind `json:"isPeak"`
  19. DayHigh int32 `json:"dayHigh"`
  20. MaxHigh int32 `json:"maxHigh"`
  21. Result pasturePb.EstrusResult_Kind `json:"result"`
  22. Remarks string `json:"remarks"`
  23. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  24. OperationId int64 `json:"operationId"`
  25. OperationName string `json:"operationName"`
  26. MessageId int64 `json:"messageId"`
  27. MessageName string `json:"messageName"`
  28. CreatedAt int64 `json:"createdAt"`
  29. UpdatedAt int64 `json:"updatedAt"`
  30. }
  31. func (e *EventEstrus) TableName() string {
  32. return "event_estrus"
  33. }
  34. func NewEventEstrus(
  35. pastureId int64,
  36. exposeEstrusType pasturePb.ExposeEstrusType_Kind,
  37. level pasturePb.EstrusLevel_Kind,
  38. result pasturePb.EstrusResult_Kind,
  39. isShow, isPerk pasturePb.IsShow_Kind,
  40. lastEstrusDate, activeDate string,
  41. dayHigh, maxHigh int32,
  42. cow *Cow,
  43. ) *EventEstrus {
  44. return &EventEstrus{
  45. PastureId: pastureId,
  46. NeckRingNumber: cow.NeckRingNumber,
  47. CowId: cow.Id,
  48. Lact: cow.Lact,
  49. ExposeEstrusType: exposeEstrusType,
  50. LastEstrusDate: lastEstrusDate,
  51. ActiveDate: activeDate,
  52. Level: level,
  53. IsShow: isShow,
  54. Result: result,
  55. DayHigh: dayHigh,
  56. MaxHigh: maxHigh,
  57. IsPeak: isPerk,
  58. }
  59. }
  60. type EstrusSlice []*EventEstrus
  61. func (e EstrusSlice) ToPB(
  62. dB *kptstore.DB,
  63. getCowInfo func(dB *kptstore.DB, cowId int64) *Cow,
  64. getCowLastEvent func(DB *kptstore.DB, cowId int64, eventCategoryId pasturePb.EventCategory_Kind) *EventCowLog,
  65. ) []*pasturePb.EstrusItems {
  66. res := make([]*pasturePb.EstrusItems, len(e))
  67. for i, v := range e {
  68. cowInfo := getCowInfo(dB, v.CowId)
  69. lastEventLog := getCowLastEvent(dB, v.CowId, pasturePb.EventCategory_Breed)
  70. planDay, optimumMatingTime := "", ""
  71. lastBreedEvnetDetails := ""
  72. if lastEventLog != nil {
  73. lastBreedEvnetDetails = fmt.Sprintf("%s %s", lastEventLog.EventTypeName, lastEventLog.EventDescription)
  74. }
  75. res[i] = &pasturePb.EstrusItems{
  76. Id: int32(v.Id),
  77. CowId: int32(v.CowId),
  78. DayAge: cowInfo.DayAge,
  79. Lact: cowInfo.Lact,
  80. Level: v.Level,
  81. PenName: cowInfo.PenName,
  82. Status: v.IsShow,
  83. CalvingAge: int32(cowInfo.CalvingAge),
  84. PlanDay: planDay,
  85. MatingTimes: cowInfo.MatingTimes,
  86. OptimumMatingStartTime: optimumMatingTime,
  87. OptimumMatingEndTime: optimumMatingTime,
  88. LastBreedEvnetDetails: lastBreedEvnetDetails,
  89. }
  90. }
  91. return res
  92. }