event_mating.go 6.4 KB

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