cow.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. package model
  2. import (
  3. "fmt"
  4. "math"
  5. "time"
  6. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  7. )
  8. type Cow struct {
  9. Id int64 `json:"id"`
  10. PastureId int64 `json:"pastureId"` // 牧场id
  11. Sex pasturePb.Genders_Kind `json:"sex"` // 性别
  12. NeckRingNumber string `json:"neckRingNumber"` // 脖环号
  13. EarNumber string `json:"earNumber"` // 耳标号
  14. EarOldNumber string `json:"earOldNumber"` // 旧耳标号
  15. PenId int32 `json:"penId"` // 栏舍id
  16. PenName string `json:"penName"` // 栏舍名称
  17. Lact int32 `json:"lact"` // 胎次
  18. DayAge int32 `json:"dayAge"` // 日龄
  19. CalvingAge int32 `json:"calvingAge"` // 产后天使
  20. PregnancyAge int32 `json:"pregnancyAge"` // 怀孕天数 孕检结果有阳性更新,产犊后至0
  21. AdmissionAge int32 `json:"admissionAge"` // 入场日龄
  22. AbortionAge int32 `json:"abortionAge"` // 流产天数
  23. CowType pasturePb.CowType_Kind `json:"cowType"` // 牛只类型
  24. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"` // 繁殖状态
  25. CowKind pasturePb.CowKind_Kind `json:"cowKind"` // 牛只品种
  26. BirthWeight int64 `json:"birthWeight"` // 出生体重
  27. CurrentWeight int64 `json:"currentWeight"` // 当前体重
  28. AdmissionWeight int64 `json:"admissionWeight"` // 入场体重
  29. SourceId pasturePb.CowSource_Kind `json:"sourceId"` // 来源哪里
  30. FatherNumber string `json:"fatherNumber"` // 父号
  31. MotherNumber string `json:"motherNumber"` // 母号
  32. AdmissionStatus pasturePb.AdmissionStatus_Kind `json:"admissionStatus"` // 在场状态
  33. IsPregnant pasturePb.IsShow_Kind `json:"isPregnant"` // 是否怀孕
  34. HealthStatus pasturePb.HealthStatus_Kind `json:"healthStatus"` // 健康状态
  35. WeaningAt int64 `json:"weaningAt"` // 断奶时间
  36. BirthAt int64 `json:"birthAt"` // 出生时间
  37. AdmissionAt int64 `json:"admissionAt"` // 入场时间
  38. DepartureAt int64 `json:"departureAt"` // 离场时间
  39. FirstMatingAt int64 `json:"firstMatingAt"` // 首次配种时间
  40. MatingTimes int32 `json:"matingTimes"` // 配种次数
  41. AbortionTimes int32 `json:"abortionTimes"` // 流产次数
  42. WeeklyActive int32 `json:"weeklyActive"` // 每周活跃度
  43. LastEstrusAt int64 `json:"lastEstrusAt"` // 最后一次发情时间
  44. LastCalvingAt int64 `json:"lastCalvingAt"` // 最后一次产犊时间
  45. LastMatingAt int64 `json:"lastMatingAt"` // 最后一次配种时间
  46. LastBullNumber string `json:"lastBullNumber"` // 最后一次配种牛号
  47. LastPregnantCheckAt int64 `json:"lastPregnantCheckAt"` // 最后一次孕检时间
  48. LastDryMilkAt int64 `json:"lastDryMilkAt"` // 最近一次干奶日期
  49. LastSecondWeight int64 `json:"lastSecondWeight"` // 最后第二次称重
  50. LastSecondWeightAt int64 `json:"lastSecondWeightAt"` // 最后第二次称重时间
  51. LastAbortionAt int64 `json:"lastAbortionAt"` // 最近一次流产时间
  52. LastWeightAt int64 `json:"lastWeightAt"` // 最近一次称重时间
  53. CreatedAt int64 `json:"createdAt"`
  54. UpdatedAt int64 `json:"updatedAt"`
  55. }
  56. func (c *Cow) TableName() string {
  57. return "cow"
  58. }
  59. func (c *Cow) EventInfoUpdate() {
  60. c.DayAge = c.GetDayAge()
  61. c.CalvingAge = c.GetCalvingAge()
  62. c.PregnancyAge = c.GetDaysPregnant()
  63. c.AdmissionAge = c.GetAdmissionAge()
  64. c.AbortionAge = c.GetAbortionAge()
  65. if c.DayAge == 60 {
  66. c.CowType = pasturePb.CowType_Weaned_Calf
  67. }
  68. }
  69. // EventCalvingUpdate 产犊更新
  70. func (c *Cow) EventCalvingUpdate(calvingAt int64) {
  71. c.Lact += 1
  72. c.MatingTimes = 0
  73. c.PregnancyAge = 0
  74. c.AbortionTimes = 0
  75. c.BreedStatus = pasturePb.BreedStatus_Calving
  76. c.IsPregnant = pasturePb.IsShow_No
  77. c.LastCalvingAt = calvingAt
  78. c.CalvingAge = c.GetCalvingAge()
  79. c.CowType = pasturePb.CowType_Breeding_Calf
  80. }
  81. // EventWeaningUpdate 断奶更新
  82. func (c *Cow) EventWeaningUpdate(weaningAt int64, penId int32, currentWeight int64) {
  83. c.PenId = penId
  84. c.WeaningAt = weaningAt
  85. c.CurrentWeight = currentWeight
  86. c.LastWeightAt = weaningAt
  87. }
  88. // EventPregnantCheckUpdate 孕检更新
  89. func (c *Cow) EventPregnantCheckUpdate(breedStatus pasturePb.BreedStatus_Kind, pregnantCheckAt int64, isPregnant pasturePb.IsShow_Kind) {
  90. c.BreedStatus = breedStatus
  91. c.LastPregnantCheckAt = pregnantCheckAt
  92. c.IsPregnant = isPregnant
  93. }
  94. // EventAbortionUpdate 流产更新
  95. func (c *Cow) EventAbortionUpdate(abortionAt int64, isLact pasturePb.IsShow_Kind) {
  96. c.IsPregnant = pasturePb.IsShow_No
  97. c.LastAbortionAt = abortionAt
  98. c.BreedStatus = pasturePb.BreedStatus_Abort
  99. c.AbortionTimes += 1
  100. if isLact == pasturePb.IsShow_Ok {
  101. c.Lact += 1
  102. }
  103. }
  104. // EventWeightUpdate 称重更新
  105. func (c *Cow) EventWeightUpdate(weight int64, weightAt int64) {
  106. c.LastSecondWeight = c.CurrentWeight
  107. c.LastSecondWeightAt = c.LastWeightAt
  108. c.LastWeightAt = weightAt
  109. c.CurrentWeight = weight
  110. }
  111. // EventHealthStatusUpdate 健康状态更新
  112. func (c *Cow) EventHealthStatusUpdate(healthStatus pasturePb.HealthStatus_Kind) {
  113. c.HealthStatus = healthStatus
  114. }
  115. // EventPenUpdate 更新栏舍
  116. func (c *Cow) EventPenUpdate(pen *Pen) {
  117. c.PenId = pen.Id
  118. c.PenName = pen.Name
  119. }
  120. // EventEarNumberUpdate 更新耳标号
  121. func (c *Cow) EventEarNumberUpdate(newEarNumber string) {
  122. c.EarOldNumber = c.EarNumber
  123. c.EarNumber = newEarNumber
  124. }
  125. // EventDepartureUpdate 更新牛只离场信息
  126. func (c *Cow) EventDepartureUpdate(departureAt int64, departureType pasturePb.DepartureType_Kind) {
  127. if departureType == pasturePb.DepartureType_Death {
  128. c.AdmissionStatus = pasturePb.AdmissionStatus_Die
  129. c.HealthStatus = pasturePb.HealthStatus_Dead
  130. }
  131. if departureType == pasturePb.DepartureType_Out {
  132. c.AdmissionStatus = pasturePb.AdmissionStatus_Out
  133. c.HealthStatus = pasturePb.HealthStatus_Out
  134. }
  135. c.DepartureAt = departureAt
  136. }
  137. // EventMatingUpdate 配种更新
  138. func (c *Cow) EventMatingUpdate(matingAt int64, bullNumber string, isReMating bool) {
  139. c.LastMatingAt = matingAt
  140. if c.FirstMatingAt <= 0 {
  141. c.FirstMatingAt = matingAt
  142. }
  143. c.LastBullNumber = bullNumber
  144. c.IsPregnant = pasturePb.IsShow_No
  145. c.BreedStatus = pasturePb.BreedStatus_Breeding
  146. if !isReMating {
  147. c.MatingTimes += 1
  148. }
  149. if c.Lact == 0 {
  150. c.CowType = pasturePb.CowType_Reserve_Calf
  151. }
  152. }
  153. func (c *Cow) EstrusUpdate(estrusAt int64) {
  154. c.LastEstrusAt = estrusAt
  155. }
  156. type CowSlice []*Cow
  157. func (c CowSlice) ToPB(
  158. penMap map[int32]*Pen,
  159. cowTypeMap map[pasturePb.CowType_Kind]string,
  160. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  161. cowKindMap map[pasturePb.CowKind_Kind]string,
  162. cowSourceMap map[pasturePb.CowSource_Kind]string,
  163. admissionStatusMap map[pasturePb.AdmissionStatus_Kind]string,
  164. healthStatusMap map[pasturePb.HealthStatus_Kind]string,
  165. ) []*pasturePb.CowDetails {
  166. res := make([]*pasturePb.CowDetails, len(c))
  167. for i, v := range c {
  168. penName := ""
  169. if pen, ok := penMap[v.PenId]; ok {
  170. penName = pen.Name
  171. }
  172. sex := "公"
  173. if v.Sex == pasturePb.Genders_Female {
  174. sex = "母"
  175. }
  176. lastWeightAtFormat := ""
  177. if v.LastWeightAt > 0 {
  178. lastWeightAtFormat = time.Unix(v.LastWeightAt, 0).Format(LayoutDate2)
  179. }
  180. isPregnantName := ""
  181. if v.IsPregnant == pasturePb.IsShow_Ok {
  182. isPregnantName = "已孕"
  183. } else {
  184. isPregnantName = "未孕"
  185. }
  186. admissionAtFormat := ""
  187. if v.AdmissionAt > 0 {
  188. admissionAtFormat = time.Unix(v.AdmissionAt, 0).Format(LayoutDate2)
  189. }
  190. birthAtFormat := ""
  191. if v.BirthAt > 0 {
  192. birthAtFormat = time.Unix(v.BirthAt, 0).Format(LayoutDate2)
  193. }
  194. weaningAtFormat := ""
  195. if v.WeaningAt > 0 {
  196. weaningAtFormat = time.Unix(v.WeaningAt, 0).Format(LayoutDate2)
  197. }
  198. firstMatingAtFormat := ""
  199. if v.FirstMatingAt > 0 {
  200. firstMatingAtFormat = time.Unix(v.FirstMatingAt, 0).Format(LayoutDate2)
  201. }
  202. lastMatingAtFormat := ""
  203. if v.LastMatingAt > 0 {
  204. lastMatingAtFormat = time.Unix(v.LastMatingAt, 0).Format(LayoutDate2)
  205. }
  206. lastPregnantCheckAtFormat := ""
  207. if v.LastPregnantCheckAt > 0 {
  208. lastPregnantCheckAtFormat = time.Unix(v.LastPregnantCheckAt, 0).Format(LayoutDate2)
  209. }
  210. lastCalvingAtFormat := ""
  211. if v.LastCalvingAt > 0 {
  212. lastCalvingAtFormat = time.Unix(v.LastCalvingAt, 0).Format(LayoutDate2)
  213. }
  214. lastAbortionAtFormat := ""
  215. if v.LastAbortionAt > 0 {
  216. lastAbortionAtFormat = time.Unix(v.LastAbortionAt, 0).Format(LayoutDate2)
  217. }
  218. lastSecondWeightAtFormat := ""
  219. if v.LastSecondWeightAt > 0 {
  220. lastSecondWeightAtFormat = time.Unix(v.LastSecondWeightAt, 0).Format(LayoutDate2)
  221. }
  222. res[i] = &pasturePb.CowDetails{
  223. CowId: int32(v.Id),
  224. Sex: sex,
  225. NeckRingNumber: v.NeckRingNumber,
  226. PenName: penName,
  227. Lact: v.Lact,
  228. CowTypeName: cowTypeMap[v.CowType],
  229. BreedStatusName: breedStatusMap[v.BreedStatus],
  230. CowKindName: cowKindMap[v.CowKind],
  231. EarNumber: v.EarNumber,
  232. BirthWeight: float32(v.BirthWeight) / 1000,
  233. CurrentWeight: float32(v.CurrentWeight) / 1000,
  234. DayAge: v.DayAge,
  235. SourceName: cowSourceMap[v.SourceId],
  236. MotherNumber: v.MotherNumber,
  237. FatherNumber: v.FatherNumber,
  238. AdmissionStatusName: admissionStatusMap[v.AdmissionStatus],
  239. HealthStatusName: healthStatusMap[v.HealthStatus],
  240. IsPregnantName: isPregnantName,
  241. AdmissionAtFormat: admissionAtFormat,
  242. BirthAtFormat: birthAtFormat,
  243. WeaningAtFormat: weaningAtFormat,
  244. CalvingAge: v.GetCalvingAge(),
  245. AbortionAge: v.AbortionAge,
  246. MatingTimes: v.MatingTimes,
  247. FirstMatingAtFormat: firstMatingAtFormat,
  248. LastMatingAtFormat: lastMatingAtFormat,
  249. LastBullNumber: v.LastBullNumber,
  250. LastPregnantCheckAtFormat: lastPregnantCheckAtFormat,
  251. LastWeightAtFormat: lastWeightAtFormat,
  252. LastCalvingAtFormat: lastCalvingAtFormat,
  253. LastAbortionAtFormat: lastAbortionAtFormat,
  254. LastSecondWeight: float32(v.LastSecondWeight) / 1000,
  255. LastSecondWeightAtFormat: lastSecondWeightAtFormat,
  256. }
  257. }
  258. return res
  259. }
  260. func (c CowSlice) ToPB2(penWeightSlice PenWeightSlice) []*pasturePb.CowList {
  261. res := make([]*pasturePb.CowList, len(c))
  262. for i, v := range c {
  263. penWeight := penWeightSlice.GetPenWeight(v.PenId)
  264. penAvgWeight := float32(0)
  265. cowPenAvgWeightDiffValue := float32(0)
  266. if penWeight != nil {
  267. penAvgWeight = float32(penWeight.AvgWeight) / 1000
  268. cowPenAvgWeightDiffValue = float32(v.CurrentWeight-int64(penWeight.AvgWeight)) / 1000
  269. }
  270. res[i] = &pasturePb.CowList{
  271. CowId: int32(v.Id),
  272. DayAge: v.DayAge,
  273. AverageDailyWeightGain: float32(v.GetAverageDailyWeight()),
  274. EarNumber: v.EarNumber,
  275. PenName: v.PenName,
  276. BirthAt: int32(v.BirthAt),
  277. BirthWeight: float32(v.BirthWeight) / 1000,
  278. CurrentWeight: float32(v.CurrentWeight) / 1000,
  279. LastWeightAt: int32(v.LastWeightAt),
  280. AdmissionAge: v.AdmissionAge,
  281. AdmissionWeight: float32(v.AbortionAge) / 1000,
  282. PreviousStageDailyWeight: float32(v.GetPreviousStageDailyWeight()),
  283. PenAvgWeight: penAvgWeight,
  284. CowPenAvgWeightDiffValue: cowPenAvgWeightDiffValue,
  285. }
  286. }
  287. return res
  288. }
  289. // NewEnterCow 入场新增牛只
  290. func NewEnterCow(pastureId int64, req *pasturePb.EventEnterRequest, penMap map[int32]*Pen) *Cow {
  291. var isPregnant = pasturePb.IsShow_No
  292. if req.BreedStatus == pasturePb.BreedStatus_Pregnant {
  293. isPregnant = pasturePb.IsShow_Ok
  294. }
  295. admissionAt := int64(0)
  296. switch req.CowSource {
  297. case pasturePb.CowSource_Calving:
  298. admissionAt = int64(req.BirthAt)
  299. case pasturePb.CowSource_Transfer_In:
  300. admissionAt = int64(req.EnterAt)
  301. case pasturePb.CowSource_Buy:
  302. admissionAt = int64(req.EnterAt)
  303. }
  304. return &Cow{
  305. PastureId: pastureId,
  306. Sex: req.Sex,
  307. EarNumber: req.EarNumber,
  308. PenId: req.PenId,
  309. PenName: penMap[req.PenId].Name,
  310. Lact: req.Lact,
  311. CowType: req.CowType,
  312. BreedStatus: req.BreedStatus,
  313. CowKind: req.CowKind,
  314. SourceId: req.CowSource,
  315. FatherNumber: req.FatherNumber,
  316. MotherNumber: req.MotherNumber,
  317. AdmissionStatus: pasturePb.AdmissionStatus_Admission,
  318. HealthStatus: pasturePb.HealthStatus_Health,
  319. IsPregnant: isPregnant,
  320. WeaningAt: int64(req.WeaningAt),
  321. BirthAt: int64(req.BirthAt),
  322. AdmissionWeight: int64(req.Weight * 1000),
  323. FirstMatingAt: int64(req.MatingAt),
  324. LastMatingAt: int64(req.MatingAt),
  325. LastPregnantCheckAt: int64(req.PregnancyCheckAt),
  326. AdmissionAt: admissionAt,
  327. BirthWeight: int64(req.Weight * 1000),
  328. LastWeightAt: int64(req.EstrusAt),
  329. CurrentWeight: int64(req.Weight * 1000),
  330. }
  331. }
  332. // NewCalfCow 产犊新增
  333. func NewCalfCow(matherInfo *Cow, calf *CalvingCalf) *Cow {
  334. return &Cow{
  335. PastureId: calf.PastureId,
  336. Sex: calf.Sex,
  337. EarNumber: calf.EarNumber,
  338. PenId: calf.PenId,
  339. PenName: calf.PenName,
  340. CowType: pasturePb.CowType_Lactating_Calf, // 哺乳犊牛
  341. BreedStatus: pasturePb.BreedStatus_UnBreed, // 未配
  342. CowKind: matherInfo.CowKind, // 牛只品种
  343. BirthWeight: calf.BirthWeight,
  344. BirthAt: calf.BirthAt,
  345. SourceId: pasturePb.CowSource_Calving, // 产犊方式
  346. FatherNumber: matherInfo.EarNumber,
  347. MotherNumber: matherInfo.LastBullNumber,
  348. AdmissionStatus: pasturePb.AdmissionStatus_Admission,
  349. IsPregnant: pasturePb.IsShow_No,
  350. AdmissionAt: calf.BirthAt,
  351. }
  352. }
  353. type BarCowStruct struct {
  354. Number int32 `json:"number"`
  355. TypeId pasturePb.CowType_Kind `json:"type_id"`
  356. }
  357. // BarCowStructSlice 首页牛群结构
  358. type BarCowStructSlice []*BarCowStruct
  359. func (b BarCowStructSlice) ToPB(cowTypeMap map[pasturePb.CowType_Kind]string, count int32) []*pasturePb.BarCowStruct {
  360. var pb []*pasturePb.BarCowStruct
  361. for _, v := range b {
  362. name := fmt.Sprintf("%s", cowTypeMap[v.TypeId])
  363. pb = append(pb, &pasturePb.BarCowStruct{Name: name, Value: v.Number})
  364. }
  365. return pb
  366. }
  367. // GetDayAge 日龄
  368. func (c *Cow) GetDayAge() int32 {
  369. if c.BirthAt <= 0 {
  370. return 0
  371. }
  372. return int32(math.Floor(float64(time.Now().Unix()-c.BirthAt) / 86400))
  373. }
  374. // GetCalvingAge 产后天数
  375. func (c *Cow) GetCalvingAge() int32 {
  376. if c.LastCalvingAt <= 0 {
  377. return 0
  378. }
  379. return int32(math.Floor(float64(time.Now().Unix()-c.LastCalvingAt) / 86400))
  380. }
  381. // GetDaysPregnant 怀孕天数
  382. func (c *Cow) GetDaysPregnant() int32 {
  383. if c.BreedStatus == pasturePb.BreedStatus_Pregnant &&
  384. c.AdmissionStatus == pasturePb.AdmissionStatus_Admission &&
  385. c.IsPregnant == pasturePb.IsShow_Ok {
  386. return int32(math.Floor(float64(time.Now().Unix()-c.LastMatingAt) / 86400))
  387. }
  388. return 0
  389. }
  390. // GetLactationDays 泌乳天数
  391. func (c *Cow) GetLactationDays() int32 {
  392. if c.BreedStatus == pasturePb.BreedStatus_Calving && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  393. return int32(math.Floor(float64(time.Now().Unix()-c.LastCalvingAt) / 86400))
  394. }
  395. return 0
  396. }
  397. // GetAdmissionAge 入场天数
  398. func (c *Cow) GetAdmissionAge() int32 {
  399. if c.AdmissionAt > 0 && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  400. return int32(math.Floor(float64(time.Now().Unix()-c.AdmissionAt) / 86400))
  401. }
  402. return 0
  403. }
  404. // GetAverageDailyWeight 平均日增重 (最后一次称重 - 第一次称重 ) ÷ 在群天数
  405. func (c *Cow) GetAverageDailyWeight() float64 {
  406. if c.CurrentWeight <= 0 || c.AdmissionAge <= 0 {
  407. return 0
  408. }
  409. firstWeight := c.BirthWeight
  410. if c.SourceId == pasturePb.CowSource_Buy {
  411. firstWeight = c.AdmissionWeight
  412. }
  413. res := math.Round(1.0 * float64(c.CurrentWeight-firstWeight) / float64(c.AdmissionAge))
  414. return res / 1000
  415. }
  416. // GetPreviousStageDailyWeight 上一个阶段日增重
  417. func (c *Cow) GetPreviousStageDailyWeight() float64 {
  418. if c.CurrentWeight-c.LastSecondWeight > 0 && c.LastWeightAt-c.LastSecondWeightAt > 0 {
  419. days := int32(math.Floor(float64(c.LastWeightAt-c.LastSecondWeightAt) / 86400))
  420. if days <= 0 {
  421. return float64(c.CurrentWeight - c.LastSecondWeight)
  422. }
  423. dayWeight := math.Round(1.0 * float64(c.CurrentWeight-c.LastSecondWeight) / float64(days))
  424. return dayWeight / 1000
  425. }
  426. return 0
  427. }
  428. // GetAbortionAge 流产天数
  429. func (c *Cow) GetAbortionAge() int32 {
  430. if c.LastAbortionAt > 0 && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  431. return int32(math.Floor(float64(time.Now().Unix()-c.LastAbortionAt) / 86400))
  432. }
  433. return 0
  434. }
  435. type CowWeightRange struct {
  436. WeightRange string `json:"weight_range"`
  437. Count int32 `json:"count"`
  438. }
  439. func (c CowSlice) WeightRangeToPB(penMap map[int32]*Pen) []*pasturePb.CowList {
  440. res := make([]*pasturePb.CowList, len(c))
  441. for i, v := range c {
  442. penName := ""
  443. if pen, ok := penMap[v.PenId]; ok {
  444. penName = pen.Name
  445. }
  446. res[i] = &pasturePb.CowList{
  447. CowId: int32(v.Id),
  448. DayAge: v.DayAge,
  449. AverageDailyWeightGain: float32(v.GetAverageDailyWeight()),
  450. PreviousStageDailyWeight: float32(v.GetPreviousStageDailyWeight()),
  451. EarNumber: v.EarNumber,
  452. PenName: penName,
  453. BirthAt: int32(v.BirthAt),
  454. BirthWeight: float32(v.BirthWeight) / 1000,
  455. CurrentWeight: float32(v.CurrentWeight) / 1000,
  456. LastWeightAt: int32(v.LastWeightAt),
  457. }
  458. }
  459. return res
  460. }
  461. // CowBehaviorCurveResponse 脖环行为数据
  462. type CowBehaviorCurveResponse struct {
  463. Code int32 `json:"code"`
  464. Msg string `json:"msg"`
  465. Data *CowBehaviorCurveData `json:"data"`
  466. }
  467. type CowBehaviorCurveData struct {
  468. OriginalDateList []int32 `json:"originalDateList"` // 原始行为数据
  469. ChangeDateList []int32 `json:"changeDateList"` // 变化数据
  470. SumDateList []int32 `json:"sumDateList"` // 累计24小时数据
  471. DateTimeList []string `json:"dateTimeList"` // 时间数据
  472. EstrusList map[pasturePb.EstrusLevel_Kind][]string `json:"estrusList"` // 发情预警
  473. EventList map[string][]string `json:"eventList"` // 事件数据
  474. EventMap map[pasturePb.EventType_Kind]string `json:"eventMap"` // 所有事件
  475. RuminaChange []int32 `json:"ruminaChange"` // 反刍变化
  476. LowActivity int32 `json:"lowActivity"` // 低活动量参数
  477. MiddleActivity int32 `json:"middleActivity"` // 中活动量行数
  478. }