event_estrus.go 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. CowId int64 `json:"cowId"`
  11. Lact int32 `json:"lact"`
  12. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  13. FilterHigh int32 `json:"filter_high"`
  14. EstrusDate string `json:"estrusDate"`
  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. PerTwentyFourHigh int32 `json:"perTwentyFourHigh"`
  20. Result pasturePb.EstrusResult_Kind `json:"result"`
  21. Remarks string `json:"remarks"`
  22. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  23. OperationId int64 `json:"operationId"`
  24. OperationName string `json:"operationName"`
  25. MessageId int64 `json:"messageId"`
  26. MessageName string `json:"messageName"`
  27. CreatedAt int64 `json:"createdAt"`
  28. UpdatedAt int64 `json:"updatedAt"`
  29. }
  30. func (e *EventEstrus) TableName() string {
  31. return "event_estrus"
  32. }
  33. func NewEventEstrus(
  34. exposeEstrusType pasturePb.ExposeEstrusType_Kind,
  35. cow *Cow,
  36. estrusDate, remarks string,
  37. ) *EventEstrus {
  38. return &EventEstrus{
  39. CowId: cow.Id,
  40. Lact: cow.Lact,
  41. ExposeEstrusType: exposeEstrusType,
  42. EstrusDate: estrusDate,
  43. Remarks: remarks,
  44. }
  45. }
  46. type EstrusSlice []*EventEstrus
  47. func (e EstrusSlice) ToPB(
  48. dB *kptstore.DB,
  49. getCowInfo func(dB *kptstore.DB, cowId int64) *Cow,
  50. getCowLastEvent func(DB *kptstore.DB, cowId int64, eventCategoryId pasturePb.EventCategory_Kind) *EventCowLog,
  51. ) []*pasturePb.EstrusItems {
  52. res := make([]*pasturePb.EstrusItems, len(e))
  53. for i, v := range e {
  54. cowInfo := getCowInfo(dB, v.CowId)
  55. lastEventLog := getCowLastEvent(dB, v.CowId, pasturePb.EventCategory_Breed)
  56. planDay, optimumMatingTime := "", ""
  57. lastBreedEvnetDetails := ""
  58. if lastEventLog != nil {
  59. lastBreedEvnetDetails = fmt.Sprintf("%s %s", lastEventLog.EventTypeName, lastEventLog.EventDescription)
  60. }
  61. res[i] = &pasturePb.EstrusItems{
  62. Id: int32(v.Id),
  63. CowId: int32(v.CowId),
  64. DayAge: cowInfo.DayAge,
  65. Lact: cowInfo.Lact,
  66. Level: v.Level,
  67. PenName: cowInfo.PenName,
  68. Status: v.IsShow,
  69. CalvingAge: int32(cowInfo.CalvingAge),
  70. PlanDay: planDay,
  71. MatingTimes: cowInfo.MatingTimes,
  72. OptimumMatingStartTime: optimumMatingTime,
  73. OptimumMatingEndTime: optimumMatingTime,
  74. LastBreedEvnetDetails: lastBreedEvnetDetails,
  75. }
  76. }
  77. return res
  78. }