event_mating.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type EventMating struct {
  4. Id int64 `json:"id"`
  5. CowId int64 `json:"cowId"`
  6. DayAge int64 `json:"dayAge"`
  7. Lact int8 `json:"lact"`
  8. CalvingAge int32 `json:"calvingAge"`
  9. PlanDay string `json:"planDay"`
  10. EndDay string `json:"endDay"`
  11. RealityDay string `json:"realityDay"`
  12. Status pasturePb.IsShow_Kind `json:"status"`
  13. MatingNumber int64 `json:"matingNumber"`
  14. MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
  15. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  16. FrozenSemenNumber string `json:"frozenSemenNumber"`
  17. FrozenSemenCount int32 `json:"frozenSemenCount"`
  18. OperationId int64 `json:"operationId"`
  19. OperationName string `json:"operationName"`
  20. Remarks string `json:"remarks"`
  21. CreatedAt int64 `json:"createdAt"`
  22. UpdatedAt int64 `json:"updatedAt"`
  23. }
  24. func (e *EventMating) TableName() string {
  25. return "event_mating"
  26. }
  27. func NewEventMating(cow *Cow, planDay string) *EventMating {
  28. return &EventMating{
  29. CowId: cow.Id,
  30. Lact: int8(cow.Lact),
  31. PlanDay: planDay,
  32. EndDay: planDay,
  33. MatingResult: pasturePb.MatingResult_Invalid,
  34. ExposeEstrusType: pasturePb.ExposeEstrusType_Same_Time,
  35. Status: pasturePb.IsShow_No,
  36. }
  37. }
  38. func NewEventMatingList(cowList []*Cow, planDay string) []*EventMating {
  39. var matingList []*EventMating
  40. for _, cow := range cowList {
  41. matingList = append(matingList, NewEventMating(cow, planDay))
  42. }
  43. return matingList
  44. }
  45. type EventMatingSlice []*EventMating
  46. func (e EventMatingSlice) ToPB(exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
  47. res := make([]*pasturePb.SearchMatingList, len(e))
  48. for i, v := range e {
  49. res[i] = &pasturePb.SearchMatingList{
  50. Id: int32(v.Id),
  51. CowId: int32(v.CowId),
  52. DayAge: int32(v.DayAge),
  53. Lact: int32(v.Lact),
  54. CalvingAge: v.CalvingAge,
  55. PlanDay: v.PlanDay,
  56. RealityDay: v.RealityDay,
  57. ExposeEstrusType: v.ExposeEstrusType,
  58. ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
  59. FrozenSemenNumber: v.FrozenSemenNumber,
  60. Remarks: v.Remarks,
  61. OperationId: int32(v.OperationId),
  62. OperationName: v.OperationName,
  63. CreatedAt: int32(v.CreatedAt),
  64. UpdatedAt: int32(v.UpdatedAt),
  65. }
  66. }
  67. return res
  68. }
  69. type CowMatingHeader struct {
  70. Id string `json:"id"`
  71. CowId string `json:"cowId"`
  72. PlanDay string `json:"planDay"`
  73. Lact string `json:"lact"`
  74. Status string `json:"status"`
  75. BreedStatusName string `json:"breedStatusName"`
  76. BreedStatus string `json:"breedStatus"`
  77. CowTypeName string `json:"cowTypeName"`
  78. PenName string `json:"penName"`
  79. DayAge string `json:"dayAge"`
  80. CalvingAge string `json:"calvingAge"`
  81. AbortionAge string `json:"abortionAge"`
  82. }
  83. type CowMatingBody struct {
  84. Id int64 `json:"id"`
  85. CowId int64 `json:"cowId"`
  86. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  87. BreedStatusName string `json:"breedStatusName"`
  88. CowType pasturePb.CowType_Kind `json:"cowType"`
  89. CowTypeName string `json:"cowTypeName"`
  90. PenId int32 `json:"penId"`
  91. PenName string `json:"penName"`
  92. Lact int32 `json:"lact"`
  93. CalvingAge int32 `json:"calvingAge"`
  94. AbortionAge int32 `json:"abortionAge"`
  95. DayAge int32 `json:"dayAge"`
  96. Status pasturePb.IsShow_Kind `json:"status"`
  97. }
  98. type CowMatingBodySlice []*CowMatingBody
  99. func (s CowMatingBodySlice) ToPB(
  100. cowTypeMap map[pasturePb.CowType_Kind]string,
  101. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  102. penMap map[int32]*Pen,
  103. ) []*CowMatingBody {
  104. res := make([]*CowMatingBody, len(s))
  105. for i, v := range s {
  106. res[i] = &CowMatingBody{
  107. Id: v.Id,
  108. CowId: v.CowId,
  109. CowType: v.CowType,
  110. CowTypeName: cowTypeMap[v.CowType],
  111. BreedStatus: v.BreedStatus,
  112. BreedStatusName: breedStatusMap[v.BreedStatus],
  113. PenName: penMap[v.PenId].Name,
  114. PenId: v.PenId,
  115. Lact: v.Lact,
  116. CalvingAge: v.CalvingAge,
  117. AbortionAge: v.AbortionAge,
  118. DayAge: v.DayAge,
  119. Status: v.Status,
  120. }
  121. }
  122. return res
  123. }