event_enter.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package model
  2. import (
  3. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  4. )
  5. type EventEnter struct {
  6. Id int64 `json:"id"`
  7. EarNumber string `json:"ear_number"`
  8. CowId int64 `json:"cow_id"`
  9. Sex pasturePb.Genders_Kind `json:"sex"`
  10. BrithAt int64 `json:"brith_at"`
  11. CowSourceId int64 `json:"cow_source_id"`
  12. OldEarNumber string `json:"old_ear_number"`
  13. CowTypeId int32 `json:"cow_type_id"`
  14. BreedStatusId int32 `json:"breed_status_id"`
  15. Lact int32 `json:"lact"`
  16. PenId int32 `json:"pen_id"`
  17. CowKindId int32 `json:"cow_kind_id"`
  18. FatherId int64 `json:"father_id"`
  19. MotherId int64 `json:"mother_id"`
  20. MatingAt int64 `json:"mating_at"`
  21. PregnancyCheckAt int64 `json:"pregnancy_check_at"`
  22. DryMilkAt int64 `json:"dry_milk_at"`
  23. WeaningAt int64 `json:"weaning_at"`
  24. EstrusAt int64 `json:"estrus_at"`
  25. EnterAt int64 `json:"enter_at"`
  26. Remarks string `json:"remarks"`
  27. Weight int64 `json:"weight"`
  28. Price int64 `json:"price"`
  29. OperationId int64 `json:"operation_id"`
  30. CreatedAt int64 `json:"created_at"`
  31. UpdatedAt int64 `json:"updated_at"`
  32. }
  33. func (e *EventEnter) TableName() string {
  34. return "event_enter"
  35. }
  36. type EventEnterSlice []*EventEnter
  37. func (e EventEnterSlice) ToPB() []*pasturePb.SearchEnterData {
  38. res := make([]*pasturePb.SearchEnterData, len(e))
  39. for i, d := range e {
  40. res[i] = &pasturePb.SearchEnterData{
  41. Id: int32(d.Id),
  42. EarNumber: d.EarNumber,
  43. CowId: int32(d.CowId),
  44. Sex: d.Sex,
  45. BirthAt: int32(d.BrithAt),
  46. CowSourceId: int32(d.CowSourceId),
  47. CowTypeId: d.CowTypeId,
  48. BreedStatusId: d.BreedStatusId,
  49. Lact: d.Lact,
  50. PenId: d.PenId,
  51. CowKindId: d.CowKindId,
  52. FatherId: int32(d.FatherId),
  53. MotherId: int32(d.MotherId),
  54. MatingAt: int32(d.MatingAt),
  55. PregnancyCheckAt: int32(d.PregnancyCheckAt),
  56. DryMilkAt: int32(d.DryMilkAt),
  57. WeaningAt: int32(d.WeaningAt),
  58. EstrusAt: int32(d.EstrusAt),
  59. EnterAt: int32(d.EnterAt),
  60. Weight: float32(d.Weight) / 100,
  61. Price: float32(d.Price) / 100,
  62. Remarks: d.Remarks,
  63. CreatedAt: int32(d.CreatedAt),
  64. UpdatedAt: int32(d.UpdatedAt),
  65. }
  66. }
  67. return res
  68. }