cow.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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 int64 `json:"calvingAge"` // 产后天使
  21. PregnancyAge int32 `json:"pregnancyAge"` // 怀孕天数 孕检结果有阳性更新,产犊后至0
  22. AdmissionAge int32 `json:"admissionAge"` // 入场日龄
  23. AbortionAge int64 `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. 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. // EventCalvingUpdate 产犊更新
  60. func (c *Cow) EventCalvingUpdate(calvingAt int64) {
  61. c.Lact += 1
  62. c.CalvingAge = int64(time.Now().Sub(time.Unix(calvingAt, 0)).Hours() / 24)
  63. c.MatingTimes = 0
  64. c.PregnancyAge = 0
  65. c.BreedStatus = pasturePb.BreedStatus_Calving
  66. c.IsPregnant = pasturePb.IsShow_No
  67. c.LastCalvingAt = calvingAt
  68. }
  69. // EventWeaningUpdate 断奶更新
  70. func (c *Cow) EventWeaningUpdate(weaningAt int64, penId int32, currentWeight int64) {
  71. c.PenId = penId
  72. c.WeaningAt = weaningAt
  73. c.CurrentWeight = currentWeight
  74. c.LastWeightAt = weaningAt
  75. }
  76. // EventPregnantCheckUpdate 孕检更新
  77. func (c *Cow) EventPregnantCheckUpdate(breedStatus pasturePb.BreedStatus_Kind, pregnantCheckAt int64, isPregnant pasturePb.IsShow_Kind) {
  78. c.BreedStatus = breedStatus
  79. c.LastPregnantCheckAt = pregnantCheckAt
  80. c.IsPregnant = isPregnant
  81. }
  82. // EventAbortionUpdate 流产更新
  83. func (c *Cow) EventAbortionUpdate(abortionAt int64) {
  84. c.IsPregnant = pasturePb.IsShow_No
  85. c.LastAbortionAt = abortionAt
  86. c.BreedStatus = pasturePb.BreedStatus_Abort
  87. }
  88. // EventWeightUpdate 称重更新
  89. func (c *Cow) EventWeightUpdate(weight int64, weightAt int64) {
  90. c.LastSecondWeight = c.CurrentWeight
  91. c.LastSecondWeightAt = c.LastWeightAt
  92. c.LastWeightAt = weightAt
  93. c.CurrentWeight = weight
  94. }
  95. // EventHealthStatusUpdate 健康状态更新
  96. func (c *Cow) EventHealthStatusUpdate(healthStatus pasturePb.HealthStatus_Kind) {
  97. c.HealthStatus = healthStatus
  98. }
  99. // EventPenUpdate 更新栏舍
  100. func (c *Cow) EventPenUpdate(pen *Pen) {
  101. c.PenId = pen.Id
  102. c.PenName = pen.Name
  103. }
  104. // EventEarNumberUpdate 更新耳标号
  105. func (c *Cow) EventEarNumberUpdate(newEarNumber string) {
  106. c.EarOldNumber = c.EarNumber
  107. c.EarNumber = newEarNumber
  108. }
  109. // EventDepartureUpdate 更新牛只离场信息
  110. func (c *Cow) EventDepartureUpdate(departureAt int64, departureType pasturePb.DepartureType_Kind) {
  111. if departureType == pasturePb.DepartureType_Death {
  112. c.AdmissionStatus = pasturePb.AdmissionStatus_Die
  113. c.HealthStatus = pasturePb.HealthStatus_Dead
  114. }
  115. if departureType == pasturePb.DepartureType_Out {
  116. c.AdmissionStatus = pasturePb.AdmissionStatus_Out
  117. c.HealthStatus = pasturePb.HealthStatus_Out
  118. }
  119. c.DepartureAt = departureAt
  120. }
  121. // EventMatingUpdate 配种更新
  122. func (c *Cow) EventMatingUpdate(matingAt int64, bullNumber string, isReMating bool) {
  123. c.LastMatingAt = matingAt
  124. if c.LastBullNumber != "" {
  125. c.FirstMatingAt = matingAt
  126. }
  127. c.LastBullNumber = bullNumber
  128. c.IsPregnant = pasturePb.IsShow_No
  129. c.BreedStatus = pasturePb.BreedStatus_Breeding
  130. if !isReMating {
  131. c.MatingTimes += 1
  132. }
  133. }
  134. type CowSlice []*Cow
  135. func (c CowSlice) ToPB(
  136. penMap map[int32]*Pen,
  137. cowTypeMap map[pasturePb.CowType_Kind]string,
  138. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  139. cowKindMap map[pasturePb.CowKind_Kind]string,
  140. cowSourceMap map[pasturePb.CowSource_Kind]string,
  141. admissionStatusMap map[pasturePb.AdmissionStatus_Kind]string,
  142. healthStatusMap map[pasturePb.HealthStatus_Kind]string,
  143. ) []*pasturePb.CowDetails {
  144. res := make([]*pasturePb.CowDetails, len(c))
  145. for i, v := range c {
  146. penName := ""
  147. if pen, ok := penMap[v.PenId]; ok {
  148. penName = pen.Name
  149. }
  150. sex := "公"
  151. if v.Sex == pasturePb.Genders_Female {
  152. sex = "母"
  153. }
  154. lastWeightAtFormat := ""
  155. if v.LastWeightAt > 0 {
  156. lastWeightAtFormat = time.Unix(v.LastWeightAt, 0).Format(LayoutDate2)
  157. }
  158. isPregnantName := ""
  159. if v.IsPregnant == pasturePb.IsShow_Ok {
  160. isPregnantName = "已孕"
  161. } else {
  162. isPregnantName = "未孕"
  163. }
  164. admissionAtFormat := ""
  165. if v.AdmissionAt > 0 {
  166. admissionAtFormat = time.Unix(v.AdmissionAt, 0).Format(LayoutDate2)
  167. }
  168. birthAtFormat := ""
  169. if v.BirthAt > 0 {
  170. birthAtFormat = time.Unix(v.BirthAt, 0).Format(LayoutDate2)
  171. }
  172. weaningAtFormat := ""
  173. if v.WeaningAt > 0 {
  174. weaningAtFormat = time.Unix(v.WeaningAt, 0).Format(LayoutDate2)
  175. }
  176. firstMatingAtFormat := ""
  177. if v.FirstMatingAt > 0 {
  178. firstMatingAtFormat = time.Unix(v.FirstMatingAt, 0).Format(LayoutDate2)
  179. }
  180. lastMatingAtFormat := ""
  181. if v.LastMatingAt > 0 {
  182. lastMatingAtFormat = time.Unix(v.LastMatingAt, 0).Format(LayoutDate2)
  183. }
  184. lastPregnantCheckAtFormat := ""
  185. if v.LastPregnantCheckAt > 0 {
  186. lastPregnantCheckAtFormat = time.Unix(v.LastPregnantCheckAt, 0).Format(LayoutDate2)
  187. }
  188. lastCalvingAtFormat := ""
  189. if v.LastCalvingAt > 0 {
  190. lastCalvingAtFormat = time.Unix(v.LastCalvingAt, 0).Format(LayoutDate2)
  191. }
  192. res[i] = &pasturePb.CowDetails{
  193. CowId: int32(v.Id),
  194. Sex: sex,
  195. NeckRingNumber: v.NeckRingNumber,
  196. PenName: penName,
  197. Lact: v.Lact,
  198. CowTypeName: cowTypeMap[v.CowType],
  199. BreedStatusName: breedStatusMap[v.BreedStatus],
  200. CowKindName: cowKindMap[v.CowKind],
  201. EarNumber: v.EarNumber,
  202. BirthWeight: float32(v.BirthWeight) / 1000,
  203. CurrentWeight: float32(v.CurrentWeight) / 1000,
  204. DayAge: v.DayAge,
  205. SourceName: cowSourceMap[v.SourceId],
  206. MontherNumber: v.MotherNumber,
  207. FatherNumber: v.FatherNumber,
  208. AdmissionStatusName: admissionStatusMap[v.AdmissionStatus],
  209. HealthStatusName: healthStatusMap[v.HealthStatus],
  210. IsPregnantName: isPregnantName,
  211. AdmissionAtFormat: admissionAtFormat,
  212. BirthAtFormat: birthAtFormat,
  213. WeaningAtFormat: weaningAtFormat,
  214. CalvingAge: int32(v.GetCalvingAge()),
  215. AbortionAge: int32(v.AbortionAge),
  216. MatingTimes: v.MatingTimes,
  217. FirstMatingAtFormat: firstMatingAtFormat,
  218. LastMatingAtFormat: lastMatingAtFormat,
  219. LastBullNumber: v.LastBullNumber,
  220. LastPregnantCheckAtFormat: lastPregnantCheckAtFormat,
  221. LastWeightAtFormat: lastWeightAtFormat,
  222. LastCalvingAtFormat: lastCalvingAtFormat,
  223. //PregnancyAge: v.PregnancyAge,
  224. }
  225. }
  226. return res
  227. }
  228. func (c CowSlice) ToPB2(penMap map[int32]*Pen, penWeightSlice PenWeightSlice) []*pasturePb.CowList {
  229. res := make([]*pasturePb.CowList, len(c))
  230. for i, v := range c {
  231. penName := ""
  232. if pen, ok := penMap[v.PenId]; ok {
  233. penName = pen.Name
  234. }
  235. penWeight := penWeightSlice.GetPenWeight(v.PenId)
  236. lastWeightDay := util.Ceil(float64(v.LastWeightAt-v.LastSecondWeightAt) / 86400)
  237. penAvgWeight := float32(0)
  238. previousStageDailyWeight := float32(0)
  239. cowPenAvgWeightDiffValue := float32(0)
  240. if penWeight != nil {
  241. penAvgWeight = float32(penWeight.AvgWeight) / 1000
  242. cowPenAvgWeightDiffValue = float32(v.CurrentWeight-int64(penWeight.AvgWeight)) / 1000
  243. if lastWeightDay > 0 {
  244. previousStageDailyWeight = float32(v.CurrentWeight-v.LastSecondWeight) / 1000 / float32(lastWeightDay)
  245. }
  246. }
  247. res[i] = &pasturePb.CowList{
  248. CowId: int32(v.Id),
  249. DayAge: v.DayAge,
  250. DailyWeightGain: float32(v.GetDayWeight()),
  251. AverageDailyWeightGain: float32(v.GetAverageDailyWeight()),
  252. EarNumber: v.EarNumber,
  253. PenName: penName,
  254. BirthAt: int32(v.BirthAt),
  255. BirthWeight: float32(v.BirthWeight) / 1000,
  256. CurrentWeight: float32(v.CurrentWeight) / 1000,
  257. LastWeightAt: int32(v.LastWeightAt),
  258. AdmissionAge: int32(v.AdmissionAge),
  259. AdmissionWeight: float32(v.AbortionAge) / 1000,
  260. PreviousStageDailyWeight: previousStageDailyWeight,
  261. PenAvgWeight: penAvgWeight,
  262. CowPenAvgWeightDiffValue: cowPenAvgWeightDiffValue,
  263. }
  264. }
  265. return res
  266. }
  267. func NewCow(req *pasturePb.EventEnterRequest) *Cow {
  268. var isPregnant = pasturePb.IsShow_No
  269. if req.BreedStatus == pasturePb.BreedStatus_Pregnant {
  270. isPregnant = pasturePb.IsShow_Ok
  271. }
  272. return &Cow{
  273. Sex: req.Sex,
  274. EarNumber: req.EarNumber,
  275. PenId: req.PenId,
  276. Lact: req.Lact,
  277. CowType: req.CowType,
  278. BreedStatus: req.BreedStatus,
  279. CowKind: req.CowKind,
  280. SourceId: req.CowSource,
  281. FatherNumber: req.FatherNumber,
  282. MotherNumber: req.MotherNumber,
  283. AdmissionStatus: pasturePb.AdmissionStatus_Admission,
  284. HealthStatus: pasturePb.HealthStatus_Health,
  285. IsPregnant: isPregnant,
  286. WeaningAt: int64(req.WeaningAt),
  287. BirthAt: int64(req.BirthAt),
  288. AdmissionWeight: int64(req.Weight * 1000),
  289. FirstMatingAt: int64(req.MatingAt),
  290. LastMatingAt: int64(req.MatingAt),
  291. LastPregnantCheckAt: int64(req.PregnancyCheckAt),
  292. AdmissionAt: time.Now().Unix(),
  293. }
  294. }
  295. func NewCalfCow(motherId int64, fatherNumber string, calf *CalvingCalf) *Cow {
  296. return &Cow{
  297. Sex: calf.Sex,
  298. EarNumber: calf.EarNumber,
  299. PenId: calf.PenId,
  300. CowType: pasturePb.CowType_Lactating_Calf, // 哺乳犊牛
  301. BreedStatus: pasturePb.BreedStatus_UnBreed, // 未配
  302. CowKind: calf.CowKind, // 牛只品种
  303. BirthWeight: calf.BirthWeight,
  304. BirthAt: calf.BirthAt,
  305. SourceId: pasturePb.CowSource_Calving, // 产犊方式
  306. FatherNumber: fatherNumber,
  307. MotherNumber: fmt.Sprintf("%d", motherId),
  308. AdmissionStatus: pasturePb.AdmissionStatus_Admission,
  309. IsPregnant: pasturePb.IsShow_No,
  310. AdmissionAt: calf.BirthAt,
  311. }
  312. }
  313. type BarCowStruct struct {
  314. Number int32 `json:"number"`
  315. TypeId pasturePb.CowType_Kind `json:"type_id"`
  316. }
  317. // BarCowStructSlice 首页牛群结构
  318. type BarCowStructSlice []*BarCowStruct
  319. func (b BarCowStructSlice) ToPB(cowTypeMap map[pasturePb.CowType_Kind]string, count int32) []*pasturePb.BarCowStruct {
  320. var pb []*pasturePb.BarCowStruct
  321. for _, v := range b {
  322. name := fmt.Sprintf("%s", cowTypeMap[v.TypeId])
  323. pb = append(pb, &pasturePb.BarCowStruct{Name: name, Value: v.Number})
  324. }
  325. return pb
  326. }
  327. // GetDayAge 日龄
  328. func (c *Cow) GetDayAge() int32 {
  329. if c.BirthAt <= 0 {
  330. return 0
  331. }
  332. return int32(math.Floor(float64(time.Now().Unix()-c.BirthAt) / 86400))
  333. }
  334. // GetCalvingAge 产后天数
  335. func (c *Cow) GetCalvingAge() int64 {
  336. if c.LastMatingAt <= 0 {
  337. return 0
  338. }
  339. return int64(math.Floor(float64(time.Now().Unix()-c.LastMatingAt) / 86400))
  340. }
  341. // GetDaysPregnant 怀孕天数
  342. func (c *Cow) GetDaysPregnant() int32 {
  343. if c.BreedStatus == pasturePb.BreedStatus_Pregnant &&
  344. c.AdmissionStatus == pasturePb.AdmissionStatus_Admission &&
  345. c.IsPregnant == pasturePb.IsShow_Ok {
  346. return int32(math.Floor(float64(time.Now().Unix()-c.LastMatingAt) / 86400))
  347. }
  348. return 0
  349. }
  350. // GetLactationDays 泌乳天数
  351. func (c *Cow) GetLactationDays() int32 {
  352. if c.BreedStatus == pasturePb.BreedStatus_Calving && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  353. return int32(math.Floor(float64(time.Now().Unix()-c.LastCalvingAt) / 86400))
  354. }
  355. return 0
  356. }
  357. // GetAdmissionAge 入场天数
  358. func (c *Cow) GetAdmissionAge() int32 {
  359. if c.AdmissionAt > 0 && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  360. return int32(math.Floor(float64(time.Now().Unix()-c.AdmissionAt) / 86400))
  361. }
  362. return 0
  363. }
  364. // GetDayWeight 日增重
  365. func (c *Cow) GetDayWeight() float64 {
  366. if c.CurrentWeight-c.LastSecondWeight > 0 && c.LastWeightAt > c.LastSecondWeightAt {
  367. days := int32(math.Floor(float64(c.LastWeightAt-c.LastSecondWeightAt) / 86400))
  368. if days <= 0 {
  369. return 0
  370. }
  371. dayWeight := math.Round(1.0 * float64(c.CurrentWeight-c.LastSecondWeight) / float64(days))
  372. return dayWeight / 1000
  373. }
  374. return 0
  375. }
  376. // GetAverageDailyWeight 平均日增重
  377. func (c *Cow) GetAverageDailyWeight() float64 {
  378. if c.CurrentWeight-c.BirthWeight > 0 && c.LastWeightAt > c.BirthAt {
  379. days := int32(math.Floor(float64(c.LastWeightAt-c.BirthAt) / 86400))
  380. if days <= 0 {
  381. return 0
  382. }
  383. dailyWeight := math.Round(1.0 * float64(c.CurrentWeight-c.BirthWeight) / float64(days))
  384. return dailyWeight / 1000
  385. }
  386. return 0
  387. }
  388. func (c *Cow) GetAbortionAge() int32 {
  389. if c.LastAbortionAt > 0 && c.AdmissionStatus == pasturePb.AdmissionStatus_Admission {
  390. return int32(math.Floor(float64(time.Now().Unix()-c.LastAbortionAt) / 86400))
  391. }
  392. return 0
  393. }
  394. type CowWeightRange struct {
  395. WeightRange string `json:"weight_range"`
  396. Count int32 `json:"count"`
  397. }
  398. func (c CowSlice) WeightRangeToPB(penMap map[int32]*Pen) []*pasturePb.CowList {
  399. res := make([]*pasturePb.CowList, len(c))
  400. for i, v := range c {
  401. penName := ""
  402. if pen, ok := penMap[v.PenId]; ok {
  403. penName = pen.Name
  404. }
  405. res[i] = &pasturePb.CowList{
  406. CowId: int32(v.Id),
  407. DayAge: v.DayAge,
  408. DailyWeightGain: float32(v.GetDayWeight()),
  409. AverageDailyWeightGain: float32(v.GetAverageDailyWeight()),
  410. EarNumber: v.EarNumber,
  411. PenName: penName,
  412. BirthAt: int32(v.BirthAt),
  413. BirthWeight: float32(v.BirthWeight) / 1000,
  414. CurrentWeight: float32(v.CurrentWeight) / 1000,
  415. LastWeightAt: int32(v.LastWeightAt),
  416. }
  417. }
  418. return res
  419. }