event_mating.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventMating struct {
  7. Id int64 `json:"id"`
  8. CowId int64 `json:"cowId"`
  9. DayAge int64 `json:"dayAge"`
  10. Lact int8 `json:"lact"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. CalvingAge int32 `json:"calvingAge"`
  13. PlanDay int64 `json:"planDay"`
  14. EndDay int64 `json:"endDay"`
  15. CalvingAt int64 `json:"calvingAt"`
  16. RealityDay int64 `json:"realityDay"`
  17. Status pasturePb.IsShow_Kind `json:"status"`
  18. MatingNumber int64 `json:"matingNumber"`
  19. MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
  20. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  21. FrozenSemenNumber string `json:"frozenSemenNumber"`
  22. FrozenSemenCount int32 `json:"frozenSemenCount"`
  23. OperationId int64 `json:"operationId"`
  24. OperationName string `json:"operationName"`
  25. Remarks string `json:"remarks"`
  26. CreatedAt int64 `json:"createdAt"`
  27. UpdatedAt int64 `json:"updatedAt"`
  28. }
  29. func (e *EventMating) TableName() string {
  30. return "event_mating"
  31. }
  32. func NewEventMating(cow *Cow, planDay int64) *EventMating {
  33. return &EventMating{
  34. CowId: cow.Id,
  35. Lact: int8(cow.Lact),
  36. CowType: cow.CowType,
  37. CalvingAt: cow.CalvingAt,
  38. PlanDay: planDay,
  39. EndDay: planDay,
  40. MatingResult: pasturePb.MatingResult_Invalid,
  41. ExposeEstrusType: pasturePb.ExposeEstrusType_Same_Time,
  42. Status: pasturePb.IsShow_No,
  43. }
  44. }
  45. func NewEventMatingList(cowList []*Cow, planDay int64) []*EventMating {
  46. var matingList []*EventMating
  47. for _, cow := range cowList {
  48. matingList = append(matingList, NewEventMating(cow, planDay))
  49. }
  50. return matingList
  51. }
  52. type EventMatingSlice []*EventMating
  53. func (e EventMatingSlice) ToPB(exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
  54. res := make([]*pasturePb.SearchMatingList, len(e))
  55. for i, v := range e {
  56. res[i] = &pasturePb.SearchMatingList{
  57. Id: int32(v.Id),
  58. CowId: int32(v.CowId),
  59. DayAge: int32(v.DayAge),
  60. Lact: int32(v.Lact),
  61. CalvingAge: v.CalvingAge,
  62. PlanDay: time.Unix(v.PlanDay, 0).Format(LayoutDate2),
  63. RealityDay: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  64. ExposeEstrusType: v.ExposeEstrusType,
  65. ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
  66. FrozenSemenNumber: v.FrozenSemenNumber,
  67. Remarks: v.Remarks,
  68. OperationId: int32(v.OperationId),
  69. OperationName: v.OperationName,
  70. CreatedAt: int32(v.CreatedAt),
  71. UpdatedAt: int32(v.UpdatedAt),
  72. }
  73. }
  74. return res
  75. }
  76. type CowMatingHeader struct {
  77. Id string `json:"id"`
  78. CowId string `json:"cowId"`
  79. PlanDay string `json:"planDay"`
  80. Lact string `json:"lact"`
  81. Status string `json:"status"`
  82. BreedStatusName string `json:"breedStatusName"`
  83. BreedStatus string `json:"breedStatus"`
  84. CowTypeName string `json:"cowTypeName"`
  85. PenName string `json:"penName"`
  86. DayAge string `json:"dayAge"`
  87. CalvingAge string `json:"calvingAge"`
  88. AbortionAge string `json:"abortionAge"`
  89. }
  90. type CowMatingBody struct {
  91. Id int64 `json:"id"`
  92. CowId int64 `json:"cowId"`
  93. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  94. BreedStatusName string `json:"breedStatusName"`
  95. CowType pasturePb.CowType_Kind `json:"cowType"`
  96. CowTypeName string `json:"cowTypeName"`
  97. PenId int32 `json:"penId"`
  98. PenName string `json:"penName"`
  99. Lact int32 `json:"lact"`
  100. CalvingAge int32 `json:"calvingAge"`
  101. AbortionAge int32 `json:"abortionAge"`
  102. DayAge int32 `json:"dayAge"`
  103. Status pasturePb.IsShow_Kind `json:"status"`
  104. }
  105. type CowMatingBodySlice []*CowMatingBody
  106. func (s CowMatingBodySlice) ToPB(
  107. cowTypeMap map[pasturePb.CowType_Kind]string,
  108. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  109. penMap map[int32]*Pen,
  110. ) []*CowMatingBody {
  111. res := make([]*CowMatingBody, len(s))
  112. for i, v := range s {
  113. res[i] = &CowMatingBody{
  114. Id: v.Id,
  115. CowId: v.CowId,
  116. CowType: v.CowType,
  117. CowTypeName: cowTypeMap[v.CowType],
  118. BreedStatus: v.BreedStatus,
  119. BreedStatusName: breedStatusMap[v.BreedStatus],
  120. PenName: penMap[v.PenId].Name,
  121. PenId: v.PenId,
  122. Lact: v.Lact,
  123. CalvingAge: v.CalvingAge,
  124. AbortionAge: v.AbortionAge,
  125. DayAge: v.DayAge,
  126. Status: v.Status,
  127. }
  128. }
  129. return res
  130. }
  131. type MatingTimelyChart struct {
  132. CalvingAge int32 `json:"calvingAge"`
  133. RealityDay string `json:"realityDay"`
  134. LactGroup string `json:"lactGroup"`
  135. }
  136. func (e EventMatingSlice) ToPB2() []*pasturePb.CowList {
  137. res := make([]*pasturePb.CowList, len(e))
  138. for i, v := range e {
  139. res[i] = &pasturePb.CowList{
  140. CowId: int32(v.CowId),
  141. DayAge: int32(v.DayAge),
  142. CalvingAge: v.CalvingAge,
  143. MatingAtFormat: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  144. CalvingAtFormat: time.Unix(v.CalvingAt, 0).Format(LayoutDate2),
  145. }
  146. }
  147. return res
  148. }
  149. type MatingTimelyResponse struct {
  150. Code int32 `json:"code"`
  151. Message string `json:"message"`
  152. Data *MatingTimelyData `json:"data"`
  153. }
  154. type MatingTimelyData struct {
  155. CowList []*pasturePb.CowList `json:"cowList"`
  156. Chart *CowMatingChart `json:"chart"`
  157. }
  158. type CowMatingChart struct {
  159. Lact0 [][]string `json:"lact0"`
  160. Lact1 [][]string `json:"lact1"`
  161. Lact2 [][]string `json:"lact2"`
  162. Lact3 [][]string `json:"lact3"`
  163. }