neck_ring_estrus.go 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package model
  2. import (
  3. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  4. )
  5. type NeckRingEstrus struct {
  6. Id int64 `json:"id"`
  7. PastureId int64 `json:"pastureId"`
  8. CowId int64 `json:"cowId"`
  9. NeckRingNumber string `json:"neckRingNumber"`
  10. EarNumber string `json:"earNumber"`
  11. Lact int32 `json:"lact"`
  12. FirstTime string `json:"firstTime"`
  13. LastTime string `json:"lastTime"`
  14. ActiveTime string `json:"activeTime"`
  15. ActiveLevel pasturePb.EstrusLevel_Kind `json:"activeLevel"`
  16. IsPeak pasturePb.IsShow_Kind `json:"isPeak"`
  17. DayHigh int32 `json:"dayHigh"`
  18. MaxHigh int32 `json:"maxHigh"`
  19. MaxCft float32 `json:"maxCft"`
  20. CheckResult pasturePb.CheckResult_Kind `json:"checkResult"`
  21. CheckAt int64 `json:"checkAt"`
  22. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  23. CreatedAt int64 `json:"createdAt"`
  24. UpdatedAt int64 `json:"updatedAt"`
  25. }
  26. func (n *NeckRingEstrus) TableName() string {
  27. return "neck_ring_estrus"
  28. }
  29. func NewNeckRingEstrus(pastureId int64, cow *Cow, level pasturePb.EstrusLevel_Kind, maxCft float32,
  30. checkResult pasturePb.CheckResult_Kind, isShow pasturePb.IsShow_Kind) *NeckRingEstrus {
  31. return &NeckRingEstrus{
  32. PastureId: pastureId,
  33. CowId: cow.Id,
  34. NeckRingNumber: cow.NeckRingNumber,
  35. EarNumber: cow.EarNumber,
  36. Lact: cow.Lact,
  37. ActiveLevel: level,
  38. IsShow: isShow,
  39. CheckResult: checkResult,
  40. MaxCft: maxCft,
  41. }
  42. }
  43. type GroupEstrusData struct {
  44. CowId int64
  45. PastureId int64
  46. EarNumber string
  47. NeckRingNumber string
  48. Records []*NeckRingEstrus
  49. Moved bool
  50. }