event_enter.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. BirthAt int64 `json:"birth_at"`
  11. CowSourceId int32 `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. Status int32 `json:"status"`
  19. FatherId int64 `json:"father_id"`
  20. MotherId int64 `json:"mother_id"`
  21. MatingAt int64 `json:"mating_at"`
  22. PregnancyCheckAt int64 `json:"pregnancy_check_at"`
  23. DryMilkAt int64 `json:"dry_milk_at"`
  24. WeaningAt int64 `json:"weaning_at"`
  25. EstrusAt int64 `json:"estrus_at"`
  26. EnterAt int64 `json:"enter_at"`
  27. Remarks string `json:"remarks"`
  28. Weight int64 `json:"weight"`
  29. Price int64 `json:"price"`
  30. OperationId int64 `json:"operation_id"`
  31. CreatedAt int64 `json:"created_at"`
  32. UpdatedAt int64 `json:"updated_at"`
  33. }
  34. func (e *EventEnter) TableName() string {
  35. return "event_enter"
  36. }
  37. func NewEventEnter(cowId, operationId int64, req *pasturePb.SearchEnterData) *EventEnter {
  38. return &EventEnter{
  39. EarNumber: req.EarNumber,
  40. CowId: cowId,
  41. Sex: req.Sex,
  42. BirthAt: int64(req.BirthAt),
  43. CowSourceId: req.CowSourceId,
  44. CowTypeId: req.CowTypeId,
  45. BreedStatusId: req.BreedStatusId,
  46. Lact: req.Lact,
  47. PenId: req.PenId,
  48. CowKindId: req.CowKindId,
  49. Status: 1,
  50. FatherId: int64(req.FatherId),
  51. MotherId: int64(req.MotherId),
  52. MatingAt: int64(req.MatingAt),
  53. PregnancyCheckAt: int64(req.PregnancyCheckAt),
  54. DryMilkAt: int64(req.DryMilkAt),
  55. WeaningAt: int64(req.WeaningAt),
  56. EstrusAt: int64(req.EstrusAt),
  57. EnterAt: int64(req.EnterAt),
  58. Remarks: req.Remarks,
  59. Weight: int64(req.Weight * 100),
  60. Price: int64(req.Price * 100),
  61. OperationId: operationId,
  62. }
  63. }
  64. type EventEnterSlice []*EventEnter
  65. func (e EventEnterSlice) ToPB() []*pasturePb.SearchEnterData {
  66. res := make([]*pasturePb.SearchEnterData, len(e))
  67. for i, d := range e {
  68. res[i] = &pasturePb.SearchEnterData{
  69. Id: int32(d.Id),
  70. EarNumber: d.EarNumber,
  71. CowId: int32(d.CowId),
  72. Sex: d.Sex,
  73. BirthAt: int32(d.BirthAt),
  74. CowSourceId: int32(d.CowSourceId),
  75. CowTypeId: d.CowTypeId,
  76. BreedStatusId: d.BreedStatusId,
  77. Lact: d.Lact,
  78. PenId: d.PenId,
  79. CowKindId: d.CowKindId,
  80. FatherId: int32(d.FatherId),
  81. MotherId: int32(d.MotherId),
  82. MatingAt: int32(d.MatingAt),
  83. PregnancyCheckAt: int32(d.PregnancyCheckAt),
  84. DryMilkAt: int32(d.DryMilkAt),
  85. WeaningAt: int32(d.WeaningAt),
  86. EstrusAt: int32(d.EstrusAt),
  87. EnterAt: int32(d.EnterAt),
  88. Weight: float32(d.Weight) / 100,
  89. Price: float32(d.Price) / 100,
  90. Remarks: d.Remarks,
  91. CreatedAt: int32(d.CreatedAt),
  92. UpdatedAt: int32(d.UpdatedAt),
  93. }
  94. }
  95. return res
  96. }