event_estrus.go 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventEstrus struct {
  7. Id int64 `json:"id"`
  8. CowId int64 `json:"cowId"`
  9. DayAge int32 `json:"dayAge"`
  10. Lact int32 `json:"lact"`
  11. CalvingAge int32 `json:"calvingAge"`
  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. UnMatingReasons pasturePb.UnMatingReasons_Kind `json:"unMatingReasons"`
  22. UnMatingReasonsName string `json:"unMatingReasonsName"`
  23. IsMating pasturePb.IsShow_Kind `json:"isMating"`
  24. Remarks string `json:"remarks"`
  25. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  26. OperationId int64 `json:"operationId"`
  27. OperationName string `json:"operationName"`
  28. MessageId int64 `json:"messageId"`
  29. MessageName string `json:"messageName"`
  30. CreatedAt int64 `json:"createdAt"`
  31. UpdatedAt int64 `json:"updatedAt"`
  32. }
  33. func (e *EventEstrus) TableName() string {
  34. return "event_estrus"
  35. }
  36. func NewEventEstrus(
  37. exposeEstrusType pasturePb.ExposeEstrusType_Kind,
  38. cow *Cow,
  39. currentUser *SystemUser,
  40. operation *SystemUser,
  41. req *pasturePb.EventEstrus,
  42. ) *EventEstrus {
  43. return &EventEstrus{
  44. CowId: cow.Id,
  45. DayAge: cow.GetDayAge(),
  46. Lact: cow.Lact,
  47. CalvingAge: int32(cow.CalvingAge),
  48. EstrusDate: time.Unix(int64(req.EstrusAt), 0).Format(LayoutTime),
  49. Remarks: req.Remarks,
  50. IsMating: req.IsMathing,
  51. UnMatingReasons: req.UnMatingReasons,
  52. MessageId: currentUser.Id,
  53. MessageName: currentUser.Name,
  54. OperationId: operation.Id,
  55. OperationName: operation.Name,
  56. ExposeEstrusType: exposeEstrusType,
  57. }
  58. }
  59. type EstrusSlice []*EventEstrus
  60. func (e EstrusSlice) ToPB() []*pasturePb.SearchEstrusList {
  61. res := make([]*pasturePb.SearchEstrusList, len(e))
  62. for i, v := range e {
  63. res[i] = &pasturePb.SearchEstrusList{
  64. Id: int32(v.Id),
  65. CowId: int32(v.CowId),
  66. DayAge: v.DayAge,
  67. Lact: v.Lact,
  68. //EstrusAt: int32(v.EstrusAt),
  69. Level: v.Level,
  70. Result: v.Result,
  71. IsMathing: v.IsMating,
  72. UnMatingReasonsName: v.UnMatingReasonsName,
  73. CalvingAge: v.CalvingAge,
  74. MessengerId: int32(v.MessageId),
  75. MessengerName: v.MessageName,
  76. Remarks: v.Remarks,
  77. OperationId: int32(v.OperationId),
  78. OperationName: v.OperationName,
  79. CreatedAt: int32(v.CreatedAt),
  80. UpdatedAt: int32(v.UpdatedAt),
  81. }
  82. }
  83. return res
  84. }