event_cow_same_time.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventCowSameTime struct {
  7. Id int64 `json:"id"`
  8. PastureId int64 `json:"pastureId"`
  9. CowId int64 `json:"cowId"`
  10. CowType pasturePb.CowType_Kind `json:"cowType"`
  11. PenId int32 `json:"penId"`
  12. PenName string `json:"penName"`
  13. Lact int32 `json:"lact"`
  14. SameTimeId int64 `json:"sameTimeId"`
  15. SameTimeName string `json:"sameTimeName"`
  16. SameTimeType pasturePb.SameTimeType_Kind `json:"sameTimeType"`
  17. PlanDay int64 `json:"planDay"`
  18. EndDay int64 `json:"endDay"`
  19. RealityDay int64 `json:"realityDay"`
  20. Status pasturePb.IsShow_Kind `json:"status"`
  21. DrugsId int64 `json:"drugsId"`
  22. Unit pasturePb.Unit_Kind `json:"unit"`
  23. Usage float32 `json:"usage"`
  24. Remarks string `json:"remarks"`
  25. OperationId int64 `json:"operationId"`
  26. OperationName string `json:"operationName"`
  27. MessageId int64 `json:"messageId"`
  28. MessageName string `json:"messageName"`
  29. CreatedAt int64 `json:"createdAt"`
  30. UpdatedAt int64 `json:"updatedAt"`
  31. }
  32. func (s *EventCowSameTime) TableName() string {
  33. return "event_cow_same_time"
  34. }
  35. func (s *EventCowSameTime) EventUpdate(drugs *Drugs, usage float32, remarks string, currentUser, operationUser *SystemUser) {
  36. s.Status = pasturePb.IsShow_Ok
  37. s.DrugsId = drugs.Id
  38. s.Unit = drugs.Unit
  39. s.Usage = usage
  40. s.Remarks = remarks
  41. s.OperationId = operationUser.Id
  42. s.OperationName = operationUser.Name
  43. s.MessageId = currentUser.Id
  44. s.MessageName = currentUser.Name
  45. }
  46. func NewEventCowSameTime(pastureId int64, cow *Cow, planTime int64, sameTime *SameTime, sameTimeType pasturePb.SameTimeType_Kind) *EventCowSameTime {
  47. return &EventCowSameTime{
  48. PastureId: pastureId,
  49. CowId: cow.Id,
  50. Lact: cow.Lact,
  51. CowType: cow.CowType,
  52. PenId: cow.PenId,
  53. SameTimeId: sameTime.Id,
  54. SameTimeName: sameTime.Name,
  55. SameTimeType: sameTimeType,
  56. Status: pasturePb.IsShow_No,
  57. PlanDay: planTime,
  58. EndDay: planTime,
  59. }
  60. }
  61. func NewEventCowSameTimeList(pastureId int64, cowList []*Cow, sameTime *SameTime, planTime int64, sameTimeType pasturePb.SameTimeType_Kind) []*EventCowSameTime {
  62. res := make([]*EventCowSameTime, len(cowList))
  63. for i, cow := range cowList {
  64. res[i] = NewEventCowSameTime(pastureId, cow, planTime, sameTime, sameTimeType)
  65. }
  66. return res
  67. }
  68. type SameTimeItemBody struct {
  69. Id int64 `json:"id"`
  70. CowId int64 `json:"cowId"`
  71. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  72. BreedStatusName string `json:"breedStatusName"`
  73. CowType pasturePb.CowType_Kind `json:"cowType"`
  74. CowTypeName string `json:"cowTypeName"`
  75. PenId int32 `json:"penId"`
  76. PenName string `json:"penName"`
  77. Lact int32 `json:"lact"`
  78. CalvingAge int32 `json:"calvingAge"`
  79. AbortionAge int32 `json:"abortionAge"`
  80. DayAge int32 `json:"dayAge"`
  81. Status pasturePb.IsShow_Kind `json:"status"`
  82. SameTimeType pasturePb.SameTimeType_Kind `json:"sameTimeType"`
  83. LastCalvingAt int64 `json:"lastCalvingAt"`
  84. LastAbortionAt int64 `json:"lastAbortionAt"`
  85. MatingTimes int32 `json:"matingTimes"`
  86. SameTimeName string `json:"sameTimeName"`
  87. }
  88. type SameTimeBodySlice []*SameTimeItemBody
  89. func (s SameTimeBodySlice) ToPB(
  90. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  91. penMap map[int32]*Pen,
  92. sameTimeTypeMap map[pasturePb.SameTimeType_Kind]string,
  93. ) []*pasturePb.SameTimeItems {
  94. res := make([]*pasturePb.SameTimeItems, len(s))
  95. for i, v := range s {
  96. penName, calvingAtFormat, abortionAtFormat := "", "", ""
  97. if pen, ok := penMap[v.PenId]; ok {
  98. penName = pen.Name
  99. }
  100. if v.LastCalvingAt > 0 {
  101. calvingAtFormat = time.Unix(v.LastCalvingAt, 0).Format(LayoutDate2)
  102. }
  103. if v.LastAbortionAt > 0 {
  104. abortionAtFormat = time.Unix(v.LastAbortionAt, 0).Format(LayoutDate2)
  105. }
  106. res[i] = &pasturePb.SameTimeItems{
  107. Id: int32(v.Id),
  108. CowId: int32(v.CowId),
  109. BreedStatus: v.BreedStatus,
  110. BreedStatusName: breedStatusMap[v.BreedStatus],
  111. PenName: penName,
  112. PenId: v.PenId,
  113. Lact: v.Lact,
  114. CalvingAge: v.CalvingAge,
  115. AbortionAge: v.AbortionAge,
  116. DayAge: v.DayAge,
  117. Status: v.Status,
  118. SameTimeTypeName: sameTimeTypeMap[v.SameTimeType],
  119. CalvingAtFormat: calvingAtFormat,
  120. AbortionAtFormat: abortionAtFormat,
  121. MatingTimes: v.MatingTimes,
  122. SameTimeName: v.SameTimeName,
  123. }
  124. }
  125. return res
  126. }
  127. type EventCowSameTimeSlice []*EventCowSameTime
  128. func (s EventCowSameTimeSlice) ToPB(sameTimeTypeMap map[pasturePb.SameTimeType_Kind]string) []*pasturePb.EventSameTime {
  129. res := make([]*pasturePb.EventSameTime, len(s))
  130. for i, v := range s {
  131. res[i] = &pasturePb.EventSameTime{
  132. CowId: int32(v.CowId),
  133. PenId: v.PenId,
  134. DrugsId: int32(v.DrugsId),
  135. Usage: v.Usage,
  136. Lact: v.Lact,
  137. SameTimeId: int32(v.SameTimeId),
  138. SameTimeType: v.SameTimeType,
  139. SameTimeTypeName: sameTimeTypeMap[v.SameTimeType],
  140. }
  141. }
  142. return res
  143. }