package model import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow" type CalvingCalf struct { Id int64 `json:"id"` CalvingId int64 `json:"calvingId"` CowId int64 `json:"cow_id"` BirthAt int64 `json:"birthAt"` MotherId int64 `json:"motherId"` EarNumber string `json:"earNumber"` Sex pasturePb.Genders_Kind `json:"sex"` CowKind pasturePb.CowKind_Kind `json:"cowKind"` BirthWeight int64 `json:"birthWeight"` IsLive pasturePb.IsShow_Kind `json:"isLive"` IsAdoption pasturePb.IsShow_Kind `json:"isAdoption"` PenId int32 `json:"penId"` WeaningAt int64 `json:"weaningAt"` CurrentWeight int64 `json:"currentWeight"` Remarks string `json:"remarks"` CreatedAt int64 `json:"createdAt"` UpdatedAt int64 `json:"updatedAt"` } func (e *CalvingCalf) TableName() string { return "calving_calf" } func NewEventCalvingCalf(motherId, calvingId, calvingAt int64, req *pasturePb.CalfItem) *CalvingCalf { isAdoption := req.IsAdoption if req.IsLive == pasturePb.IsShow_No { isAdoption = pasturePb.IsShow_No } return &CalvingCalf{ EarNumber: req.EarNumber, CalvingId: calvingId, CowId: int64(req.CowId), BirthAt: calvingAt, PenId: req.PenId, BirthWeight: int64(req.Weight * 1000), CurrentWeight: int64(req.Weight * 1000), Sex: req.Sex, MotherId: motherId, Remarks: req.Remarks, IsAdoption: isAdoption, IsLive: req.IsLive, } }