cow_pregnant.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type CowPregnant struct {
  4. Id int64 `json:"id"`
  5. PastureId int64 `json:"pastureId"`
  6. CowId int64 `json:"cowId"`
  7. Lact int32 `json:"lact"`
  8. DayAge int32 `json:"dayAge"`
  9. PenId int32 `json:"penId"`
  10. AdmissionAge int32 `json:"admissionAge"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. PregnancyAge int32 `json:"pregnancyAge"`
  13. CreatedAt int64 `json:"createdAt"`
  14. UpdatedAt int64 `json:"updatedAt"`
  15. }
  16. func (c *CowPregnant) TableName() string {
  17. return "cow_pregnant"
  18. }
  19. func NewCowPregnant(cow *Cow) *CowPregnant {
  20. return &CowPregnant{
  21. PastureId: cow.PastureId,
  22. CowId: cow.Id,
  23. Lact: cow.Lact,
  24. DayAge: cow.DayAge,
  25. PenId: cow.PenId,
  26. AdmissionAge: cow.AdmissionAge,
  27. CowType: cow.CowType,
  28. PregnancyAge: cow.PregnancyAge,
  29. }
  30. }
  31. func NewCowPregnantList(cow []*Cow) []*CowPregnant {
  32. res := make([]*CowPregnant, len(cow))
  33. for i, v := range cow {
  34. res[i] = NewCowPregnant(v)
  35. }
  36. return res
  37. }
  38. type CowPregnantMonth struct {
  39. Month string `json:"month"`
  40. CowCount int32 `json:"cowCount"`
  41. }