neck_ring_health_warning.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. const (
  4. MinScore = 1
  5. MaxScore = 84
  6. )
  7. type NeckRingHealthWarning struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. NeckRingNumber string `json:"neckRingNumber"`
  11. CowId int64 `json:"cowId"`
  12. Lact int32 `json:"lact"`
  13. CalvingAge int32 `json:"calvingAge"`
  14. HeatDate string `json:"heatDate"`
  15. Frameid int32 `json:"frameid"`
  16. ActiveTime string `json:"activeTime"`
  17. ChangeFilter int32 `json:"changeFilter"`
  18. ChewFilter int32 `json:"chewFilter"`
  19. SumChew int32 `json:"sumChew"`
  20. SumInactive int32 `json:"sumInactive"`
  21. BeforeThreeSumChew int32 `json:"beforeThreeSumChew"`
  22. MinHigh int32 `json:"minHigh"`
  23. MaxHigh int32 `json:"maxHigh"`
  24. MinChew int32 `json:"minChew"`
  25. MinInactive int32 `json:"minInactive"`
  26. Score int32 `json:"score"`
  27. IsWorse pasturePb.IsShow_Kind `json:"isWorse"`
  28. CheckResult pasturePb.CheckResult_Kind `json:"checkResult"`
  29. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  30. CreatedAt int64 `json:"createdAt"`
  31. UpdatedAt int64 `json:"updatedAt"`
  32. }
  33. func (h *NeckRingHealthWarning) TableName() string {
  34. return "neck_ring_health_warning"
  35. }
  36. func NewNeckRingHealthWarning(habit *NeckActiveHabit, sumChew, chew3dago int32) *NeckRingHealthWarning {
  37. return &NeckRingHealthWarning{
  38. PastureId: habit.PastureId,
  39. NeckRingNumber: habit.NeckRingNumber,
  40. CowId: habit.CowId,
  41. Lact: habit.Lact,
  42. CalvingAge: habit.CalvingAge,
  43. HeatDate: habit.HeatDate,
  44. Frameid: habit.Frameid,
  45. ActiveTime: habit.ActiveTime,
  46. ChangeFilter: getAbleInt(habit.ChangeFilter),
  47. ChewFilter: getAbleInt(habit.ChewFilter),
  48. SumChew: sumChew,
  49. SumInactive: habit.SumInactive,
  50. BeforeThreeSumChew: chew3dago,
  51. MinHigh: getAbleInt(habit.SumMinHigh),
  52. MaxHigh: getAbleInt(habit.SumMaxHigh),
  53. MinChew: getAbleInt(habit.SumMinChew),
  54. //MinInactive: getAbleInt(habit.SumInactive),
  55. Score: habit.Score,
  56. IsWorse: 0,
  57. CheckResult: pasturePb.CheckResult_Pending,
  58. IsShow: pasturePb.IsShow_No,
  59. }
  60. }
  61. func getAbleInt(value int32) int32 {
  62. if value > -99 {
  63. return value
  64. }
  65. return 0
  66. }