event_cow_same_time.go 5.7 KB

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