event_mating.go 11 KB

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