calving_calf.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type CalvingCalf struct {
  4. Id int64 `json:"id"`
  5. CalvingId int64 `json:"calvingId"`
  6. CowId int64 `json:"cow_id"`
  7. BirthAt int64 `json:"birthAt"`
  8. MotherId int64 `json:"motherId"`
  9. EarNumber string `json:"earNumber"`
  10. Sex pasturePb.Genders_Kind `json:"sex"`
  11. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  12. BirthWeight int64 `json:"birthWeight"`
  13. IsLive pasturePb.IsShow_Kind `json:"isLive"`
  14. IsAdoption pasturePb.IsShow_Kind `json:"isAdoption"`
  15. PenId int32 `json:"penId"`
  16. WeaningAt int64 `json:"weaningAt"`
  17. CurrentWeight int64 `json:"currentWeight"`
  18. Remarks string `json:"remarks"`
  19. CreatedAt int64 `json:"createdAt"`
  20. UpdatedAt int64 `json:"updatedAt"`
  21. }
  22. func (e *CalvingCalf) TableName() string {
  23. return "calving_calf"
  24. }
  25. func NewEventCalvingCalf(motherId, calvingId, calvingAt int64, req *pasturePb.CalfItem) *CalvingCalf {
  26. isAdoption := req.IsAdoption
  27. if req.IsLive == pasturePb.IsShow_No {
  28. isAdoption = pasturePb.IsShow_No
  29. }
  30. return &CalvingCalf{
  31. EarNumber: req.EarNumber,
  32. CalvingId: calvingId,
  33. CowId: int64(req.CowId),
  34. BirthAt: calvingAt,
  35. PenId: req.PenId,
  36. BirthWeight: int64(req.Weight * 1000),
  37. CurrentWeight: int64(req.Weight * 1000),
  38. Sex: req.Sex,
  39. MotherId: motherId,
  40. Remarks: req.Remarks,
  41. IsAdoption: isAdoption,
  42. IsLive: req.IsLive,
  43. }
  44. }