cow.go 15 KB

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