calving_calf.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. PastureId int64 `json:"pastureId"`
  6. CalvingId int64 `json:"calvingId"`
  7. CowId int64 `json:"cow_id"`
  8. BirthAt int64 `json:"birthAt"`
  9. MotherId int64 `json:"motherId"`
  10. EarNumber string `json:"earNumber"`
  11. Sex pasturePb.Genders_Kind `json:"sex"`
  12. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  13. BirthWeight int64 `json:"birthWeight"`
  14. IsLive pasturePb.IsShow_Kind `json:"isLive"`
  15. IsAdoption pasturePb.IsShow_Kind `json:"isAdoption"`
  16. PenId int32 `json:"penId"`
  17. WeaningAt int64 `json:"weaningAt"`
  18. CurrentWeight int64 `json:"currentWeight"`
  19. Remarks string `json:"remarks"`
  20. CreatedAt int64 `json:"createdAt"`
  21. UpdatedAt int64 `json:"updatedAt"`
  22. }
  23. func (e *CalvingCalf) TableName() string {
  24. return "calving_calf"
  25. }
  26. func NewEventCalvingCalf(pastureId, motherId, calvingId, calvingAt int64, req *pasturePb.CalfItem) *CalvingCalf {
  27. isAdoption := req.IsAdoption
  28. if req.IsLive == pasturePb.IsShow_No {
  29. isAdoption = pasturePb.IsShow_No
  30. }
  31. return &CalvingCalf{
  32. PastureId: pastureId,
  33. EarNumber: req.EarNumber,
  34. CalvingId: calvingId,
  35. CowId: int64(req.CowId),
  36. BirthAt: calvingAt,
  37. PenId: req.PenId,
  38. BirthWeight: int64(req.Weight * 1000),
  39. CurrentWeight: int64(req.Weight * 1000),
  40. Sex: req.Sex,
  41. MotherId: motherId,
  42. Remarks: req.Remarks,
  43. IsAdoption: isAdoption,
  44. IsLive: req.IsLive,
  45. }
  46. }