123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package model
- import (
- "fmt"
- pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- )
- const (
- DefaultChangeFilter = -10000
- DefaultRuminaFilter = -10000
- DefaultChewFilter = -10000
- DefaultFilterCorrect = 100
- )
- type NeckActiveHabit struct {
- Id int64 `json:"id"`
- CowId int64 `json:"cowId"`
- NeckRingNumber string `json:"neckRingNumber"`
- Lact int32 `json:"lact"`
- CalvingAge int64 `json:"calvingAge"`
- Frameid int32 `json:"frameid"`
- HeatDate string `json:"heatDate"`
- Rumina int32 `json:"rumina"`
- Intake int32 `json:"intake"`
- Inactive int32 `json:"inactive"`
- Gasp int32 `json:"gasp"`
- Other int32 `json:"other"`
- High int32 `json:"high"`
- Active int32 `json:"active"`
- Voltage int32 `json:"voltage"`
- Version int32 `json:"version"`
- FilterHigh int32 `json:"filterHigh"`
- FilterRumina int32 `json:"filterRumina"`
- FilterChew int32 `json:"filterChew"`
- WeekHigh int32 `json:"weekHigh"`
- AvgHighHabit int32 `json:"avgHighHabit"`
- AvgRuminaHabit int32 `json:"avgRuminaHabit"`
- AvgIntakeHabit int32 `json:"avgIntakeHabit"`
- AvgChewHabit int32 `json:"avgChewHabit"`
- AvgInactiveHabit int32 `json:"avgInactiveHabit"`
- AvgOtherHabit int32 `json:"avgOtherHabit"`
- ChangeHigh int32 `json:"changeHigh"`
- ChangeRumina int32 `json:"changeRumina"`
- ChangeChew int32 `json:"changeChew"`
- ChangeAdjust int32 `json:"changeAdjust"`
- ChangeFilter int32 `json:"changeFilter"`
- RuminaFilter int32 `json:"ruminaFilter"`
- ChewFilter int32 `json:"chewFilter"`
- FilterCorrect int32 `json:"filterCorrect"`
- SumRumina int32 `json:"sumRumina"`
- SumIntake int32 `json:"sumIntake"`
- SumInactive int32 `json:"sumInactive"`
- SumAct int32 `json:"sumAct"`
- SumMinHigh int32 `json:"sumMinHigh"`
- SumMaxHigh int32 `json:"sumMaxHigh"`
- SumMinChew int32 `json:"SumMinChew"`
- SumRuminaBeforeThreeDay int32 `json:"sumRuminaBeforeThreeDay"`
- SumIntakeBeforeThreeDay int32 `json:"sumIntakeBeforeThreeDay"`
- Score int32 `json:"score"`
- IsMaxTime pasturePb.IsShow_Kind `json:"isMaxTime"`
- IsShow pasturePb.IsShow_Kind `json:"isShow"`
- ReceiveNumber int32 `json:"receiveNumber"`
- RecordCount int32 `json:"recordCount"`
- ActiveTime string `json:"activeTime"`
- CreatedAt int64 `json:"createdAt"`
- UpdatedAt int64 `json:"updatedAt"`
- }
- func (n *NeckActiveHabit) TableName() string {
- return "neck_active_habit"
- }
- func NewNeckActiveHabit(defaultWeeklyActive, frameId int32, heatDate, neckRingNumber string, cow *Cow, data *NeckRingOriginalMerge) *NeckActiveHabit {
- cowId := int64(0)
- lact := int32(0)
- if cow != nil {
- cowId = cow.Id
- lact = cow.Lact
- }
- weekHigh := cow.WeeklyActive
- if cow.WeeklyActive == 0 {
- weekHigh = defaultWeeklyActive
- }
- return &NeckActiveHabit{
- Frameid: frameId,
- HeatDate: heatDate,
- NeckRingNumber: neckRingNumber,
- Lact: lact,
- CalvingAge: cow.CalvingAge,
- CowId: cowId,
- Active: data.Active,
- Gasp: data.Gasp,
- High: data.High,
- Inactive: data.Inactive,
- Intake: data.Intake,
- Other: data.Other,
- Rumina: data.Rumina,
- WeekHigh: weekHigh,
- IsShow: pasturePb.IsShow_No,
- IsMaxTime: pasturePb.IsShow_No,
- ChangeFilter: DefaultChangeFilter,
- FilterCorrect: DefaultFilterCorrect,
- RuminaFilter: DefaultRuminaFilter,
- ChewFilter: DefaultChewFilter,
- ActiveTime: fmt.Sprintf("%s %02d:00:00", heatDate, frameId),
- }
- }
- func (n *NeckActiveHabit) MergeData(data *NeckActiveHabit) {
- n.Rumina += data.Rumina
- n.Inactive += data.Inactive
- n.Active += data.Active
- n.Intake += data.Intake
- n.Other += data.Other
- n.Gasp += data.Gasp
- n.High += data.High
- }
|