event_cow_treatment.go 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package model
  2. import (
  3. "encoding/json"
  4. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  5. "go.uber.org/zap"
  6. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  7. )
  8. type EventCowTreatment struct {
  9. Id int64 `json:"id"`
  10. CowId int64 `json:"cowId"`
  11. CowDiseaseId int64 `json:"cowDiseaseId"`
  12. DiseaseId int64 `json:"diseaseId"`
  13. DiseaseName string `json:"diseaseName"`
  14. PrescriptionId int32 `json:"prescriptionId"`
  15. PrescriptionName string `json:"prescriptionName"`
  16. PrescriptionDetail string `json:"prescriptionDetail"`
  17. TreatmentResult pasturePb.TreatmentResult_Kind `json:"treatmentResult"`
  18. OperationId int64 `json:"operationId"`
  19. OperationName string `json:"operationName"`
  20. Remarks string `json:"remarks"`
  21. TreatmentAt int64 `json:"treatmentAt"`
  22. CreatedAt int64 `json:"createdAt"`
  23. UpdatedAt int64 `json:"updatedAt"`
  24. }
  25. func (e *EventCowTreatment) TableName() string {
  26. return "event_cow_treatment"
  27. }
  28. func NewEventCowTreatment(prescription *Prescription, req *pasturePb.CowTreatmentRequest, operation *SystemUser) *EventCowTreatment {
  29. b, _ := json.Marshal(req.PrescriptionDetail)
  30. return &EventCowTreatment{
  31. CowId: int64(req.CowId),
  32. CowDiseaseId: int64(req.Id),
  33. DiseaseId: int64(req.DiseaseId),
  34. DiseaseName: req.DiseaseName,
  35. PrescriptionId: req.PrescriptionId,
  36. PrescriptionName: prescription.Name,
  37. PrescriptionDetail: string(b),
  38. TreatmentResult: req.TreatmentResult,
  39. OperationId: operation.Id,
  40. OperationName: operation.Name,
  41. Remarks: req.Remarks,
  42. }
  43. }
  44. type EventCowTreatmentSlice []*EventCowTreatment
  45. func (e EventCowTreatmentSlice) ToPB(eventCowDiseaseList []*EventCowDisease) []*pasturePb.EventCowTreatment {
  46. res := make([]*pasturePb.EventCowTreatment, len(e))
  47. for i, v := range e {
  48. prescriptionDetail := make([]*pasturePb.TreatmentDrugs, 0)
  49. if v.PrescriptionDetail != "" {
  50. err := json.Unmarshal([]byte(v.PrescriptionDetail), &prescriptionDetail)
  51. if err != nil {
  52. zaplog.Error("EventCowTreatmentSlice", zap.Any("err", err))
  53. }
  54. }
  55. eventCowTreatment := &pasturePb.EventCowTreatment{
  56. CowId: int32(v.CowId),
  57. CowDiseaseId: int32(v.CowDiseaseId),
  58. PrescriptionId: v.PrescriptionId,
  59. PrescriptionName: v.PrescriptionName,
  60. PrescriptionDetail: prescriptionDetail,
  61. TreatmentResult: 0,
  62. OperationId: int32(v.OperationId),
  63. OperationName: v.OperationName,
  64. Remarks: v.Remarks,
  65. CreatedAt: int32(v.CreatedAt),
  66. UpdatedAt: int32(v.UpdatedAt),
  67. DiseaseId: int32(v.DiseaseId),
  68. Id: int32(v.Id),
  69. }
  70. for _, d := range eventCowDiseaseList {
  71. if v.CowDiseaseId != d.Id {
  72. continue
  73. }
  74. eventCowTreatment.DiseaseName = d.DiseaseName
  75. eventCowTreatment.DiseaseAt = int32(d.DiseaseAt)
  76. }
  77. res[i] = eventCowTreatment
  78. }
  79. return res
  80. }