event_estrus.go 3.2 KB

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