event_abortion.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package model
  2. import (
  3. "strings"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventAbortion struct {
  7. Id int64 `json:"id"`
  8. PastureId int64 `json:"pastureId"`
  9. CowId int64 `json:"cowId"`
  10. Lact int32 `json:"lact"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. DayAge int32 `json:"dayAge"`
  13. PregnantAge int32 `json:"pregnantAge"`
  14. AbortionAt int64 `json:"abortionAt"`
  15. IsAfterbirth pasturePb.IsShow_Kind `json:"isAfterbirth"`
  16. Photos string `json:"photos"`
  17. AbortionReasons pasturePb.AbortionReasons_Kind `json:"abortionReasons"`
  18. AbortionReasonsName string `json:"abortionReasonsName"`
  19. Remarks string `json:"remarks"`
  20. IsAppend pasturePb.IsShow_Kind `json:"isAppend"`
  21. OperationId int64 `json:"operationId"`
  22. OperationName string `json:"operationName"`
  23. CreatedAt int64 `json:"createdAt"`
  24. UpdatedAt int64 `json:"updatedAt"`
  25. }
  26. func (e *EventAbortion) TableName() string {
  27. return "event_abortion"
  28. }
  29. func NewEventAbortion(pastureId int64, cow *Cow, req *pasturePb.EventAbortionRequest, isAppend pasturePb.IsShow_Kind) *EventAbortion {
  30. return &EventAbortion{
  31. PastureId: pastureId,
  32. CowId: cow.Id,
  33. Lact: cow.Lact,
  34. CowType: cow.CowType,
  35. PregnantAge: cow.GetDaysPregnant(),
  36. DayAge: cow.DayAge,
  37. AbortionAt: int64(req.AbortionAt),
  38. IsAfterbirth: req.IsAfterbirth,
  39. Photos: strings.Join(req.Photos, ","),
  40. AbortionReasons: req.AbortionReasons,
  41. AbortionReasonsName: req.AbortionReasonsName,
  42. Remarks: req.Remarks,
  43. IsAppend: isAppend,
  44. OperationId: int64(req.OperationId),
  45. OperationName: req.OperationName,
  46. }
  47. }
  48. type AbortionSlice []*EventAbortion
  49. func (a AbortionSlice) ToPB() []*pasturePb.EventAbortionRequest {
  50. res := make([]*pasturePb.EventAbortionRequest, len(a))
  51. for i, v := range a {
  52. res[i] = &pasturePb.EventAbortionRequest{
  53. Id: int32(v.Id),
  54. CowId: int32(v.CowId),
  55. DayAge: v.DayAge,
  56. Lact: v.Lact,
  57. AbortionAt: int32(v.AbortionAt),
  58. IsAfterbirth: v.IsAfterbirth,
  59. Photos: strings.Split(v.Photos, ","),
  60. AbortionReasons: v.AbortionReasons,
  61. AbortionReasonsName: v.AbortionReasonsName,
  62. PregnancyAge: v.PregnantAge,
  63. Remarks: v.Remarks,
  64. OperationId: int32(v.OperationId),
  65. OperationName: v.OperationName,
  66. CreatedAt: int32(v.CreatedAt),
  67. UpdatedAt: int32(v.UpdatedAt),
  68. }
  69. }
  70. return res
  71. }