event_cow_same_time.go 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package model
  2. import (
  3. "fmt"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventCowSameTime struct {
  7. Id int64 `json:"id"`
  8. CowId int64 `json:"cowId"`
  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 NewCowSameTimeDetailList(cowList []*Cow, sameTimeId int64, planTime int64, sameTimeType pasturePb.SameTimeType_Kind) []*EventCowSameTime {
  30. res := make([]*EventCowSameTime, len(cowList))
  31. for i, cow := range cowList {
  32. res[i] = &EventCowSameTime{
  33. CowId: cow.Id,
  34. Lact: cow.Lact,
  35. PenId: cow.PenId,
  36. SameTimeId: sameTimeId,
  37. SameTimeType: sameTimeType,
  38. Status: pasturePb.IsShow_No,
  39. PlanDay: planTime,
  40. EndDay: planTime,
  41. }
  42. }
  43. return res
  44. }
  45. type SameTimeHeader struct {
  46. Id string `json:"id"`
  47. CowId string `json:"cowId"`
  48. CowTypeName string `json:"cowTypeName"`
  49. BreedStatusName string `json:"breedStatusName"`
  50. PenName string `json:"penName"`
  51. Lact string `json:"lact"`
  52. CalvingAge string `json:"calvingAge"`
  53. AbortionAge string `json:"abortionAge"`
  54. DayAge string `json:"dayAge"`
  55. Status string `json:"status"`
  56. }
  57. type SameTimeBody struct {
  58. Id int64 `json:"id"`
  59. CowId int64 `json:"cowId"`
  60. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  61. BreedStatusName string `json:"breedStatusName"`
  62. CowType pasturePb.CowType_Kind `json:"cowType"`
  63. CowTypeName string `json:"cowTypeName"`
  64. PenId int32 `json:"penId"`
  65. PenName string `json:"penName"`
  66. Lact int32 `json:"lact"`
  67. CalvingAge int32 `json:"calvingAge"`
  68. AbortionAge int32 `json:"abortionAge"`
  69. DayAge int32 `json:"dayAge"`
  70. Status pasturePb.IsShow_Kind `json:"status"`
  71. }
  72. type SameTimeBodySlice []*SameTimeBody
  73. func (s SameTimeBodySlice) ToPB(
  74. cowTypeMap map[pasturePb.CowType_Kind]string,
  75. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  76. penMap map[int32]*Pen,
  77. ) []*SameTimeBody {
  78. res := make([]*SameTimeBody, len(s))
  79. for i, v := range s {
  80. res[i] = &SameTimeBody{
  81. Id: v.Id,
  82. CowId: v.CowId,
  83. CowType: v.CowType,
  84. CowTypeName: cowTypeMap[v.CowType],
  85. BreedStatus: v.BreedStatus,
  86. BreedStatusName: breedStatusMap[v.BreedStatus],
  87. PenName: penMap[v.PenId].Name,
  88. PenId: v.PenId,
  89. Lact: v.Lact,
  90. CalvingAge: v.CalvingAge,
  91. AbortionAge: v.AbortionAge,
  92. DayAge: v.DayAge,
  93. Status: v.Status,
  94. }
  95. }
  96. return res
  97. }
  98. type EventCowSameTimeSlice []*EventCowSameTime
  99. func (s EventCowSameTimeSlice) ToPB() []*pasturePb.EventSameTime {
  100. res := make([]*pasturePb.EventSameTime, len(s))
  101. for i, v := range s {
  102. res[i] = &pasturePb.EventSameTime{
  103. CowId: fmt.Sprintf("%d", v.CowId),
  104. PenId: v.PenId,
  105. DrugsId: int32(v.DrugsId),
  106. Usage: v.Usage,
  107. Lact: v.Lact,
  108. SameTimeId: int32(v.SameTimeId),
  109. SameTimeType: v.SameTimeType,
  110. SameTimeTypeName: "",
  111. }
  112. }
  113. return res
  114. }