event_cow_disease.go 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type EventCowDisease struct {
  4. Id int64 `json:"id"`
  5. CowId int64 `json:"cowId"`
  6. Lact int32 `json:"lact"`
  7. DayAge int32 `json:"dayAge"`
  8. DiseaseId int32 `json:"diseaseId"`
  9. DiseaseName string `json:"diseaseName"`
  10. DiagnoseId int32 `json:"diagnoseId"`
  11. DiagnoseName string `json:"diagnoseName"`
  12. PenId int32 `json:"penId"`
  13. HealthStatus pasturePb.HealthStatus_Kind `json:"healthStatus"`
  14. DiagnosedResult pasturePb.IsShow_Kind `json:"diagnosedResult"`
  15. DiseaseAt int64 `json:"diseaseAt"`
  16. Temperature int32 `json:"temperature"`
  17. Remarks string `json:"remarks"`
  18. OperationId int32 `json:"operationId"`
  19. OperationName string `json:"operationName"`
  20. DiagnoseOperationId int32 `json:"diagnoseOperationId"`
  21. DiagnoseOperationName string `json:"diagnoseOperationName"`
  22. CreatedAt int64 `json:"createdAt"`
  23. UpdatedAt int64 `json:"updatedAt"`
  24. }
  25. func (e *EventCowDisease) TableName() string {
  26. return "event_cow_disease"
  27. }
  28. func NewEventCowDisease(cow *Cow, req *pasturePb.EventCowDisease) *EventCowDisease {
  29. return &EventCowDisease{
  30. CowId: cow.Id,
  31. Lact: cow.Lact,
  32. DayAge: cow.DayAge,
  33. DiseaseId: req.DiseaseId,
  34. DiseaseName: req.DiseaseName,
  35. PenId: req.PenId,
  36. HealthStatus: pasturePb.HealthStatus_Health,
  37. DiseaseAt: int64(req.DiseaseAt),
  38. Temperature: int32(req.Temperature * 10),
  39. OperationId: req.OperationId,
  40. OperationName: req.OperationName,
  41. Remarks: req.Remarks,
  42. }
  43. }
  44. type EventCowDiseaseSlice []*EventCowDisease
  45. func (e EventCowDiseaseSlice) ToPB(healthStatusMap map[pasturePb.HealthStatus_Kind]string) []*pasturePb.EventCowDisease {
  46. res := make([]*pasturePb.EventCowDisease, len(e))
  47. for i, v := range e {
  48. res[i] = &pasturePb.EventCowDisease{
  49. Id: int32(v.Id),
  50. CowId: int32(v.CowId),
  51. Lact: v.Lact,
  52. DayAge: v.DayAge,
  53. DiseaseId: v.DiseaseId,
  54. DiseaseName: v.DiseaseName,
  55. DiagnoseId: v.DiagnoseId,
  56. DiagnoseName: v.DiagnoseName,
  57. PenId: v.PenId,
  58. HealthStatus: v.HealthStatus,
  59. HealthStatusName: healthStatusMap[v.HealthStatus],
  60. Temperature: float32(v.HealthStatus / 10),
  61. DiseaseAt: int32(v.DiseaseAt),
  62. Remarks: v.Remarks,
  63. OperationId: v.OperationId,
  64. OperationName: v.OperationName,
  65. }
  66. }
  67. return res
  68. }