cow.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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. Sex pasturePb.Genders_Kind `json:"sex"`
  11. NeckRingNumber string `json:"neckRingNumber"`
  12. EarNumber string `json:"earNumber"`
  13. EarOldNumber string `json:"earOldNumber"`
  14. PenId int32 `json:"penId"`
  15. Lact int32 `json:"lact"`
  16. DayAge int32 `json:"dayAge"`
  17. CalvingAge int64 `json:"calvingAge"`
  18. PregnancyAge int64 `json:"pregnancyAge"` // 怀孕天数 孕检结果有阳性更新,产犊后至0
  19. AdmissionAge int64 `json:"admissionAge"`
  20. AbortionAge int64 `json:"abortionAge"` // 流产天数
  21. CowType pasturePb.CowType_Kind `json:"cowType"`
  22. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  23. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  24. BirthWeight int64 `json:"birthWeight"`
  25. CurrentWeight int64 `json:"currentWeight"`
  26. SourceId pasturePb.CowSource_Kind `json:"sourceId"`
  27. FatherId int64 `json:"fatherId"`
  28. MotherId int64 `json:"motherId"`
  29. IsRemove pasturePb.IsShow_Kind `json:"isRemove"`
  30. IsPregnant pasturePb.IsShow_Kind `json:"isPregnant"`
  31. IsHealth pasturePb.IsShow_Kind `json:"isHealth"`
  32. WeaningAt int64 `json:"weaningAt"`
  33. CalvingAt int64 `json:"calvingAt"`
  34. BirthAt int64 `json:"birthAti"`
  35. AdmissionAt int64 `json:"admissionAt"`
  36. FirstMatingAt int64 `json:"firstMatingAt"`
  37. LastEstrusAt int64 `json:"lastEstrusAt"`
  38. LastCalvingAt int64 `json:"lastCalvingAt"`
  39. LastMatingAt int64 `json:"lastMatingAt"`
  40. LastBullId int64 `json:"lastBullId"`
  41. LastPregnantCheckAt int64 `json:"lastPregnantCheckAt"`
  42. LastDryMilkAt int64 `json:"lastDryMilkAt"`
  43. LastSecondWeight int64 `json:"lastSecondWeight"`
  44. LastSecondWeightAt int64 `json:"lastSecondWeightAt"`
  45. LastAbortionAt int64 `json:"lastAbortionAt"`
  46. LastWeightAt int64 `json:"lastWeightAt"`
  47. CreatedAt int64 `json:"createdAt"`
  48. UpdatedAt int64 `json:"updatedAt"`
  49. }
  50. func (c *Cow) TableName() string {
  51. return "cow"
  52. }
  53. type CowSlice []*Cow
  54. func (c CowSlice) ToPB(
  55. penList []*Pen,
  56. cowTypeMap map[pasturePb.CowType_Kind]string,
  57. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  58. cowKindMap map[pasturePb.CowKind_Kind]string,
  59. ) []*pasturePb.SearchCowList {
  60. res := make([]*pasturePb.SearchCowList, len(c))
  61. for i, v := range c {
  62. penName := ""
  63. for _, pen := range penList {
  64. if v.PenId != int32(pen.Id) {
  65. continue
  66. }
  67. penName = pen.Name
  68. }
  69. res[i] = &pasturePb.SearchCowList{
  70. CowId: int32(v.Id),
  71. Sex: v.Sex,
  72. NeckRingNumber: v.NeckRingNumber,
  73. EarNumber: v.EarNumber,
  74. PenId: v.PenId,
  75. PenName: penName,
  76. CowType: int32(v.CowType),
  77. Lact: v.Lact,
  78. CowTypeName: cowTypeMap[v.CowType],
  79. BreedStatus: v.BreedStatus,
  80. BreedStatusName: breedStatusMap[v.BreedStatus],
  81. CowKind: v.CowKind,
  82. CowKindName: cowKindMap[v.CowKind],
  83. BirthAt: int32(v.BirthAt),
  84. BirthWeight: int32(v.BirthWeight) / 1000,
  85. CurrentWeight: int32(v.CurrentWeight) / 1000,
  86. LastWeightAt: int32(v.LastWeightAt),
  87. }
  88. }
  89. return res
  90. }
  91. func NewCow(req *pasturePb.EventEnterData) *Cow {
  92. var isPregnant = pasturePb.IsShow_No
  93. if req.BreedStatusId == pasturePb.BreedStatus_Pregnant {
  94. isPregnant = pasturePb.IsShow_Ok
  95. }
  96. return &Cow{
  97. Sex: req.Sex,
  98. EarNumber: req.EarNumber,
  99. PenId: req.PenId,
  100. Lact: req.Lact,
  101. CowType: req.CowTypeId,
  102. BreedStatus: req.BreedStatusId,
  103. CowKind: req.CowKindId,
  104. SourceId: req.CowSourceId,
  105. FatherId: int64(req.FatherId),
  106. MotherId: int64(req.MotherId),
  107. IsRemove: pasturePb.IsShow_Ok,
  108. IsHealth: pasturePb.IsShow_Ok,
  109. IsPregnant: isPregnant,
  110. WeaningAt: int64(req.WeaningAt),
  111. BirthAt: int64(req.BirthAt),
  112. FirstMatingAt: int64(req.MatingAt),
  113. LastMatingAt: int64(req.MatingAt),
  114. LastPregnantCheckAt: int64(req.PregnancyCheckAt),
  115. }
  116. }
  117. func NewCalfCow(motherId, fatherId int64, calf *CalvingCalf) *Cow {
  118. return &Cow{
  119. Sex: calf.Sex,
  120. EarNumber: calf.EarNumber,
  121. PenId: calf.PenId,
  122. CowType: pasturePb.CowType_Lactating_Calf, // 哺乳犊牛
  123. BreedStatus: pasturePb.BreedStatus_UnBreed, // 未配
  124. CowKind: calf.CowKind, // 牛只品种
  125. BirthWeight: calf.BirthWeight,
  126. SourceId: pasturePb.CowSource_Calving, // 产犊方式
  127. FatherId: fatherId,
  128. MotherId: motherId,
  129. IsRemove: pasturePb.IsShow_Ok,
  130. IsPregnant: pasturePb.IsShow_No,
  131. }
  132. }
  133. type BarCowStruct struct {
  134. Number int32 `json:"number"`
  135. TypeId pasturePb.CowType_Kind `json:"type_id"`
  136. }
  137. // BarCowStructSlice 首页牛群结构
  138. type BarCowStructSlice []*BarCowStruct
  139. func (b BarCowStructSlice) ToPB(cowTypeMap map[pasturePb.CowType_Kind]string, count int32) []*pasturePb.BarCowStruct {
  140. var pb []*pasturePb.BarCowStruct
  141. for _, v := range b {
  142. name := fmt.Sprintf("%s", cowTypeMap[v.TypeId])
  143. pb = append(pb, &pasturePb.BarCowStruct{Name: name, Value: v.Number})
  144. }
  145. return pb
  146. }
  147. // GetDayAge 日龄
  148. func (c *Cow) GetDayAge() int32 {
  149. if c.BirthAt <= 0 {
  150. return 0
  151. }
  152. return int32(math.Floor(float64(time.Now().Unix()-c.BirthAt) / 86400))
  153. }
  154. // GetCalvingAge 产后天数
  155. func (c *Cow) GetCalvingAge() int64 {
  156. if c.CalvingAt <= 0 {
  157. return 0
  158. }
  159. return int64(math.Floor(float64(time.Now().Unix()-c.CalvingAt) / 86400))
  160. }
  161. // GetDaysPregnant 怀孕天数
  162. func (c *Cow) GetDaysPregnant() int32 {
  163. if c.BreedStatus == pasturePb.BreedStatus_Pregnant && c.IsRemove == pasturePb.IsShow_No && c.IsPregnant == pasturePb.IsShow_Ok {
  164. return int32(math.Floor(float64(time.Now().Unix()-c.LastMatingAt) / 86400))
  165. }
  166. return 0
  167. }
  168. // GetLactationDays 泌乳天数
  169. func (c *Cow) GetLactationDays() int32 {
  170. if c.BreedStatus == pasturePb.BreedStatus_Calving && c.IsRemove == pasturePb.IsShow_Ok {
  171. return int32(math.Floor(float64(time.Now().Unix()-c.LastCalvingAt) / 86400))
  172. }
  173. return 0
  174. }
  175. // GetAdmissionAge 入场天数
  176. func (c *Cow) GetAdmissionAge() int32 {
  177. if c.AdmissionAt > 0 && c.IsRemove == pasturePb.IsShow_Ok {
  178. return int32(math.Floor(float64(time.Now().Unix()-c.AdmissionAt) / 86400))
  179. }
  180. return 0
  181. }
  182. // GetDayWeight 日增重
  183. func (c *Cow) GetDayWeight() float64 {
  184. if c.CurrentWeight-c.LastSecondWeight > 0 && c.LastWeightAt > c.LastSecondWeightAt {
  185. days := int32(math.Floor(float64(c.LastWeightAt-c.LastSecondWeightAt) / 86400))
  186. if days <= 0 {
  187. return 0
  188. }
  189. return math.Round(1.0 * float64(c.CurrentWeight-c.LastSecondWeight) / float64(days))
  190. }
  191. return 0
  192. }
  193. // GetAverageDailyWeight 平均日增重
  194. func (c *Cow) GetAverageDailyWeight() float64 {
  195. if c.CurrentWeight-c.BirthWeight > 0 && c.LastWeightAt > c.BirthAt {
  196. days := int32(math.Floor(float64(c.LastWeightAt-c.BirthAt) / 86400))
  197. if days <= 0 {
  198. return 0
  199. }
  200. dailyWeight := math.Round(1.0 * float64(c.CurrentWeight-c.BirthWeight) / float64(days))
  201. return dailyWeight
  202. }
  203. return 0
  204. }
  205. func (c *Cow) GetAbortionAge() int32 {
  206. if c.LastAbortionAt > 0 && c.IsRemove == pasturePb.IsShow_Ok {
  207. return int32(math.Floor(float64(time.Now().Unix()-c.LastAbortionAt) / 86400))
  208. }
  209. return 0
  210. }