event_mating.go 9.4 KB

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