calving_calf.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. PenName string `json:"penName"`
  18. WeaningAt int64 `json:"weaningAt"`
  19. CurrentWeight int64 `json:"currentWeight"`
  20. Remarks string `json:"remarks"`
  21. CreatedAt int64 `json:"createdAt"`
  22. UpdatedAt int64 `json:"updatedAt"`
  23. }
  24. func (e *CalvingCalf) TableName() string {
  25. return "calving_calf"
  26. }
  27. func NewEventCalvingCalf(pastureId, motherId, calvingId, calvingAt int64, penMap map[int32]*Pen, req *pasturePb.CalfItem) *CalvingCalf {
  28. isAdoption := req.IsAdoption
  29. if req.IsLive == pasturePb.IsShow_No {
  30. isAdoption = pasturePb.IsShow_No
  31. }
  32. return &CalvingCalf{
  33. PastureId: pastureId,
  34. EarNumber: req.EarNumber,
  35. CalvingId: calvingId,
  36. CowId: int64(req.CowId),
  37. BirthAt: calvingAt,
  38. PenId: req.PenId,
  39. PenName: penMap[req.PenId].Name,
  40. BirthWeight: int64(req.Weight * 1000),
  41. CurrentWeight: int64(req.Weight * 1000),
  42. Sex: req.Sex,
  43. MotherId: motherId,
  44. Remarks: req.Remarks,
  45. IsAdoption: isAdoption,
  46. IsLive: req.IsLive,
  47. }
  48. }