event_mating.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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 int32 `json:"dayAge"`
  10. Lact int32 `json:"lact"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  13. CalvingAge int32 `json:"calvingAge"`
  14. PlanDay int64 `json:"planDay"`
  15. EndDay int64 `json:"endDay"`
  16. CalvingAt int64 `json:"calvingAt"`
  17. RealityDay int64 `json:"realityDay"`
  18. Status pasturePb.IsShow_Kind `json:"status"`
  19. MatingTimes int32 `json:"matingTimes"`
  20. MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
  21. MatingResultAt int64 `json:"matingResultAt"`
  22. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  23. FrozenSemenNumber string `json:"frozenSemenNumber"`
  24. FrozenSemenCount int32 `json:"frozenSemenCount"`
  25. OperationId int64 `json:"operationId"`
  26. OperationName string `json:"operationName"`
  27. MessageId int64 `json:"messageId"`
  28. MessageName string `json:"messageName"`
  29. Remarks string `json:"remarks"`
  30. CreatedAt int64 `json:"createdAt"`
  31. UpdatedAt int64 `json:"updatedAt"`
  32. }
  33. func (e *EventMating) TableName() string {
  34. return "event_mating"
  35. }
  36. func NewEventMating(cow *Cow, planDay int64) *EventMating {
  37. return &EventMating{
  38. CowId: cow.Id,
  39. Lact: cow.Lact,
  40. CowType: cow.CowType,
  41. CowKind: cow.CowKind,
  42. CalvingAt: cow.CalvingAt,
  43. PlanDay: planDay,
  44. EndDay: planDay,
  45. MatingResult: pasturePb.MatingResult_Invalid,
  46. ExposeEstrusType: pasturePb.ExposeEstrusType_Same_Time,
  47. Status: pasturePb.IsShow_No,
  48. }
  49. }
  50. // NewEventMating2 自然发情的牛只
  51. func NewEventMating2(cow *Cow, req *pasturePb.EventMating) *EventMating {
  52. return &EventMating{
  53. CowId: cow.Id,
  54. Lact: cow.Lact,
  55. DayAge: cow.GetDayAge(),
  56. CowType: cow.CowType,
  57. CowKind: cow.CowKind,
  58. CalvingAt: cow.CalvingAt,
  59. PlanDay: int64(req.MatingAt),
  60. RealityDay: int64(req.MatingAt),
  61. EndDay: int64(req.MatingAt),
  62. MatingResult: pasturePb.MatingResult_Invalid,
  63. ExposeEstrusType: pasturePb.ExposeEstrusType_Natural_Estrus,
  64. Status: pasturePb.IsShow_Ok,
  65. MatingTimes: 1,
  66. OperationId: int64(req.OperationId),
  67. OperationName: req.OperationName,
  68. FrozenSemenNumber: req.FrozenSemenNumber,
  69. FrozenSemenCount: req.FrozenSemenCount,
  70. Remarks: req.Remarks,
  71. }
  72. }
  73. func NewEventMatingList(cowList []*Cow, planDay int64) []*EventMating {
  74. var matingList []*EventMating
  75. for _, cow := range cowList {
  76. matingList = append(matingList, NewEventMating(cow, planDay))
  77. }
  78. return matingList
  79. }
  80. type EventMatingSlice []*EventMating
  81. func (e EventMatingSlice) ToPB(exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
  82. res := make([]*pasturePb.SearchMatingList, len(e))
  83. for i, v := range e {
  84. res[i] = &pasturePb.SearchMatingList{
  85. Id: int32(v.Id),
  86. CowId: int32(v.CowId),
  87. DayAge: int32(v.DayAge),
  88. Lact: int32(v.Lact),
  89. CalvingAge: v.CalvingAge,
  90. PlanDay: time.Unix(v.PlanDay, 0).Format(LayoutDate2),
  91. RealityDay: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  92. ExposeEstrusType: v.ExposeEstrusType,
  93. ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
  94. FrozenSemenNumber: v.FrozenSemenNumber,
  95. Remarks: v.Remarks,
  96. OperationId: int32(v.OperationId),
  97. OperationName: v.OperationName,
  98. CreatedAt: int32(v.CreatedAt),
  99. UpdatedAt: int32(v.UpdatedAt),
  100. }
  101. }
  102. return res
  103. }
  104. type CowMatingBody struct {
  105. Id int64 `json:"id"`
  106. CowId int64 `json:"cowId"`
  107. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  108. BreedStatusName string `json:"breedStatusName"`
  109. CowType pasturePb.CowType_Kind `json:"cowType"`
  110. CowTypeName string `json:"cowTypeName"`
  111. PenId int32 `json:"penId"`
  112. PenName string `json:"penName"`
  113. Lact int32 `json:"lact"`
  114. CalvingAge int32 `json:"calvingAge"`
  115. AbortionAge int32 `json:"abortionAge"`
  116. DayAge int32 `json:"dayAge"`
  117. Status pasturePb.IsShow_Kind `json:"status"`
  118. }
  119. type CowMatingBodySlice []*CowMatingBody
  120. func (s CowMatingBodySlice) ToPB(
  121. cowTypeMap map[pasturePb.CowType_Kind]string,
  122. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  123. penMap map[int32]*Pen,
  124. ) []*CowMatingBody {
  125. res := make([]*CowMatingBody, len(s))
  126. for i, v := range s {
  127. res[i] = &CowMatingBody{
  128. Id: v.Id,
  129. CowId: v.CowId,
  130. CowType: v.CowType,
  131. CowTypeName: cowTypeMap[v.CowType],
  132. BreedStatus: v.BreedStatus,
  133. BreedStatusName: breedStatusMap[v.BreedStatus],
  134. PenName: penMap[v.PenId].Name,
  135. PenId: v.PenId,
  136. Lact: v.Lact,
  137. CalvingAge: v.CalvingAge,
  138. AbortionAge: v.AbortionAge,
  139. DayAge: v.DayAge,
  140. Status: v.Status,
  141. }
  142. }
  143. return res
  144. }
  145. type MatingTimelyChart struct {
  146. CalvingAge int32 `json:"calvingAge"`
  147. RealityDay string `json:"realityDay"`
  148. LactGroup string `json:"lactGroup"`
  149. }
  150. func (e EventMatingSlice) ToPB2() []*pasturePb.CowList {
  151. res := make([]*pasturePb.CowList, len(e))
  152. for i, v := range e {
  153. calvingAt, matingAtFormat := "", ""
  154. if v.CalvingAt > 0 {
  155. calvingAt = time.Unix(v.CalvingAt, 0).Format(LayoutDate2)
  156. }
  157. if v.RealityDay > 0 {
  158. matingAtFormat = time.Unix(v.RealityDay, 0).Format(LayoutDate2)
  159. }
  160. res[i] = &pasturePb.CowList{
  161. CowId: int32(v.CowId),
  162. DayAge: int32(v.DayAge),
  163. CalvingAge: v.CalvingAge,
  164. MatingAtFormat: matingAtFormat,
  165. CalvingAtFormat: calvingAt,
  166. Lact: int32(v.Lact),
  167. }
  168. }
  169. return res
  170. }
  171. type MatingTimelyResponse struct {
  172. Code int32 `json:"code"`
  173. Message string `json:"message"`
  174. Data *MatingTimelyData `json:"data"`
  175. }
  176. type MatingTimelyData struct {
  177. CowList []*pasturePb.CowList `json:"cowList"`
  178. Chart *CowMatingChart `json:"chart"`
  179. }
  180. type CowMatingChart struct {
  181. Lact0 [][]string `json:"lact0"`
  182. Lact1 [][]string `json:"lact1"`
  183. Lact2 [][]string `json:"lact2"`
  184. Lact3 [][]string `json:"lact3"`
  185. }
  186. // MultiFactorPregnancyRateResponse 多维度受胎率
  187. type MultiFactorPregnancyRateResponse struct {
  188. Code int32 `json:"code"`
  189. Message string `json:"message"`
  190. Data *MultiFactorPregnancyRateData `json:"data"`
  191. }
  192. // MultiFactorPregnancyRateList 多维度受胎率分析
  193. type MultiFactorPregnancyRateList struct {
  194. StatisticMethod1 string `json:"statisticMethod1"` // 统计方式名称1 (月度、品种)
  195. StatisticMethod2 string `json:"statisticMethod2"` // 统计方式名称2 (月度、品种)
  196. PregnantRate float32 `json:"pregnantRate"` // 受胎率%(怀孕数 / 怀孕数 + 空怀数)
  197. PregnantCount int32 `json:"pregnantCount"` // 怀孕总数
  198. EmptyPregnantCount int32 `json:"emptyPregnantCount"` // 空怀数
  199. OtherCount int32 `json:"otherCount"` // 其他数 (配种后结果未知的个数,小于等于三次配种后,尚未孕检已经淘汰的个数)
  200. AbortionCount int32 `json:"abortionCount"` // 流产数 (已经怀孕后流产的个数)
  201. TotalCount int32 `json:"totalCount"` // 合计( 怀孕总数+空怀数+其他数)
  202. SpcRate float32 `json:"spcRate"` // spc(1 / 受胎率)
  203. Months string `json:"months"` // 月份
  204. OperationName string `json:"operationName"` // 配种员名称
  205. Bull string `json:"bull"` // 公牛
  206. Lact string `json:"lact"` // 胎次
  207. MatingTimes string `json:"matingTimes"` // 配次
  208. ExposeEstrusType string `json:"exposeEstrusType"` // 发情揭发方式
  209. Week string `json:"week"` // 周
  210. }
  211. type MultiFactorPregnancyRateData struct {
  212. Total int32 `json:"total"`
  213. PageSize int32 `json:"pageSize"`
  214. Page int32 `json:"page"`
  215. List []*MultiFactorPregnancyRateList `json:"list"`
  216. Chart *MultiFactorPregnancyRateChart `json:"chart"`
  217. }
  218. type MultiFactorPregnancyRateChart struct {
  219. Header []string `json:"header"` // 标题头
  220. PregnantRateMap map[string]map[string]string `json:"pregnantRateMap"`
  221. KepMap []string `json:"kepMap"`
  222. }