model.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package crontab
  2. type XToday struct {
  3. XBegDate string
  4. XEndDate string
  5. LastMaxHabitId int64
  6. CurrMaxHabitId int64
  7. XMin2Id int64
  8. XMin7Id int64
  9. ActiveLowest int64
  10. RuminaLowest int64
  11. ActiveLow int64
  12. ActiveMiddle int64
  13. ActiveHigh int64
  14. }
  15. type WeekHabit struct {
  16. NeckRingNumber string
  17. AvgHighHabit int32
  18. AvgRuminaHabit int32
  19. AvgChewHabit int32
  20. AvgInactiveHabit int32
  21. AvgIntakeHabit int32
  22. AvgOtherHabit int32
  23. }
  24. type SumHabit struct {
  25. NeckRingNumber string
  26. SumRumina int32
  27. SumIntake int32
  28. SumInactive int32
  29. SumActive int32
  30. SumMaxHigh int32
  31. SumMinHigh int32
  32. SumMinChew int32
  33. }
  34. type ActivityVolume struct {
  35. NeckRingNumber string
  36. AvgFilter int32
  37. StdFilter int32
  38. Nb int32
  39. }
  40. type CowEstrusOriginal struct {
  41. CowId int64
  42. Lact int32
  43. CalvingAge int64
  44. CreateTime string
  45. Cft float32
  46. High int32
  47. }
  48. type CowEstrus struct {
  49. CowId int64
  50. ActiveDate string
  51. HadJust int32
  52. }
  53. type EstrusStartData struct {
  54. CowId int64
  55. EstrusStartDate string
  56. }
  57. type EstrusIsPeakData struct {
  58. CowId int64
  59. EstrusStartDate string
  60. ActiveDate string
  61. }