cow.go 20 KB

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