event_mating.go 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type EventMating struct {
  4. Id int64 `json:"id"`
  5. CowId int64 `json:"cowId"`
  6. DayAge int64 `json:"dayAge"`
  7. Lact int8 `json:"lact"`
  8. LactationDays int32 `json:"lactationDays"`
  9. MatingNumber int64 `json:"matingNumber"`
  10. MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
  11. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  12. MatingAt int64 `json:"matingAt"`
  13. FrozenSemenNumber string `json:"frozenSemenNumber"`
  14. StallNumberId int64 `json:"stallNumberId"`
  15. OperationId int64 `json:"operationId"`
  16. Remarks string `json:"remarks"`
  17. CreatedAt int64 `json:"createdAt"`
  18. UpdatedAt int64 `json:"updatedAt"`
  19. }
  20. func (e *EventMating) TableName() string {
  21. return "event_mating"
  22. }
  23. func NewEventMating(cow *Cow, currentUser *SystemUser, req *pasturePb.EventMating) *EventMating {
  24. return &EventMating{
  25. CowId: cow.Id,
  26. DayAge: int64(cow.GetDayAge()),
  27. Lact: int8(cow.Lact),
  28. LactationDays: cow.GetLactationDays(),
  29. MatingNumber: 1,
  30. MatingResult: pasturePb.MatingResult_Unknown,
  31. ExposeEstrusType: req.ExposeEstrusType,
  32. MatingAt: int64(req.MatingAt),
  33. FrozenSemenNumber: req.FrozenSemenNumber,
  34. StallNumberId: int64(req.StaffMemberId),
  35. OperationId: currentUser.Id,
  36. Remarks: req.Remarks,
  37. }
  38. }
  39. type EventMatingSlice []*EventMating
  40. func (e EventMatingSlice) ToPB(user []*SystemUser, exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
  41. res := make([]*pasturePb.SearchMatingList, len(e))
  42. for i, v := range e {
  43. operationName, staffMemberName := "", ""
  44. for _, u := range user {
  45. if v.OperationId == u.Id {
  46. operationName = u.Name
  47. }
  48. if v.StallNumberId == u.Id {
  49. staffMemberName = u.Name
  50. }
  51. }
  52. res[i] = &pasturePb.SearchMatingList{
  53. Id: int32(v.Id),
  54. CowId: int32(v.CowId),
  55. DayAge: int32(v.DayAge),
  56. Lact: int32(v.Lact),
  57. ExposeEstrusType: v.ExposeEstrusType,
  58. ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
  59. MatingAt: int32(v.MatingAt),
  60. FrozenSemenNumber: v.FrozenSemenNumber,
  61. LactationDays: v.LactationDays,
  62. StaffMemberId: int32(v.StallNumberId),
  63. StaffMemberName: staffMemberName,
  64. Remarks: v.Remarks,
  65. OperationId: int32(v.OperationId),
  66. OperationName: operationName,
  67. CreatedAt: int32(v.CreatedAt),
  68. UpdatedAt: int32(v.UpdatedAt),
  69. }
  70. }
  71. return res
  72. }