cow.go 22 KB

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