event_cow_same_time.go 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package model
  2. import (
  3. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  4. )
  5. type EventCowSameTime struct {
  6. Id int64 `json:"id"`
  7. CowId int64 `json:"cowId"`
  8. CowType pasturePb.CowType_Kind `json:"cowType"`
  9. PenId int32 `json:"penId"`
  10. PenName string `json:"penName"`
  11. Lact int32 `json:"lact"`
  12. SameTimeId int64 `json:"sameTimeId"`
  13. SameTimeType pasturePb.SameTimeType_Kind `json:"sameTimeType"`
  14. PlanDay int64 `json:"planDay"`
  15. EndDay int64 `json:"endDay"`
  16. RealityDay int64 `json:"realityDay"`
  17. Status pasturePb.IsShow_Kind `json:"status"`
  18. DrugsId int64 `json:"drugsId"`
  19. Unit pasturePb.Unit_Kind `json:"unit"`
  20. Usage int32 `json:"usage"`
  21. OperationId int64 `json:"operationId"`
  22. OperationName string `json:"operationName"`
  23. CreatedAt int64 `json:"createdAt"`
  24. UpdatedAt int64 `json:"updatedAt"`
  25. }
  26. func (s *EventCowSameTime) TableName() string {
  27. return "event_cow_same_time"
  28. }
  29. func NewEventCowSameTime(cow *Cow, planTime int64, sameTimeId int64, sameTimeType pasturePb.SameTimeType_Kind) *EventCowSameTime {
  30. return &EventCowSameTime{
  31. CowId: cow.Id,
  32. Lact: cow.Lact,
  33. CowType: cow.CowType,
  34. PenId: cow.PenId,
  35. SameTimeId: sameTimeId,
  36. SameTimeType: sameTimeType,
  37. Status: pasturePb.IsShow_No,
  38. PlanDay: planTime,
  39. EndDay: planTime,
  40. }
  41. }
  42. func NewEventCowSameTimeList(cowList []*Cow, sameTimeId int64, planTime int64, sameTimeType pasturePb.SameTimeType_Kind) []*EventCowSameTime {
  43. res := make([]*EventCowSameTime, len(cowList))
  44. for i, cow := range cowList {
  45. res[i] = NewEventCowSameTime(cow, planTime, sameTimeId, sameTimeType)
  46. }
  47. return res
  48. }
  49. type SameTimeBody struct {
  50. Id int64 `json:"id"`
  51. CowId int64 `json:"cowId"`
  52. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  53. BreedStatusName string `json:"breedStatusName"`
  54. CowType pasturePb.CowType_Kind `json:"cowType"`
  55. CowTypeName string `json:"cowTypeName"`
  56. PenId int32 `json:"penId"`
  57. PenName string `json:"penName"`
  58. Lact int32 `json:"lact"`
  59. CalvingAge int32 `json:"calvingAge"`
  60. AbortionAge int32 `json:"abortionAge"`
  61. DayAge int32 `json:"dayAge"`
  62. Status pasturePb.IsShow_Kind `json:"status"`
  63. }
  64. type SameTimeBodySlice []*SameTimeBody
  65. func (s SameTimeBodySlice) ToPB(
  66. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  67. penMap map[int32]*Pen,
  68. ) []*pasturePb.SameTimeItems {
  69. res := make([]*pasturePb.SameTimeItems, len(s))
  70. for i, v := range s {
  71. penName := ""
  72. if pen, ok := penMap[v.PenId]; ok {
  73. penName = pen.Name
  74. }
  75. res[i] = &pasturePb.SameTimeItems{
  76. Id: int32(v.Id),
  77. CowId: int32(v.CowId),
  78. BreedStatus: v.BreedStatus,
  79. BreedStatusName: breedStatusMap[v.BreedStatus],
  80. PenName: penName,
  81. PenId: v.PenId,
  82. Lact: v.Lact,
  83. CalvingAge: v.CalvingAge,
  84. AbortionAge: v.AbortionAge,
  85. DayAge: v.DayAge,
  86. Status: v.Status,
  87. }
  88. }
  89. return res
  90. }
  91. type EventCowSameTimeSlice []*EventCowSameTime
  92. func (s EventCowSameTimeSlice) ToPB() []*pasturePb.EventSameTime {
  93. res := make([]*pasturePb.EventSameTime, len(s))
  94. for i, v := range s {
  95. res[i] = &pasturePb.EventSameTime{
  96. CowId: int32(v.CowId),
  97. PenId: v.PenId,
  98. DrugsId: int32(v.DrugsId),
  99. Usage: v.Usage,
  100. Lact: v.Lact,
  101. SameTimeId: int32(v.SameTimeId),
  102. SameTimeType: v.SameTimeType,
  103. SameTimeTypeName: "",
  104. }
  105. }
  106. return res
  107. }