event_cow_disease.go 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. CowType pasturePb.CowType_Kind `json:"cowType"`
  7. Lact int32 `json:"lact"`
  8. DayAge int32 `json:"dayAge"`
  9. DiseaseId int32 `json:"diseaseId"`
  10. DiseaseName string `json:"diseaseName"`
  11. DiseaseType int32 `json:"diseaseType"`
  12. DiseaseTypeName string `json:"diseaseTypeName"`
  13. DiagnoseId int32 `json:"diagnoseId"`
  14. DiagnoseName string `json:"diagnoseName"`
  15. PenId int32 `json:"penId"`
  16. HealthStatus pasturePb.HealthStatus_Kind `json:"healthStatus"`
  17. DiagnosedResult pasturePb.IsShow_Kind `json:"diagnosedResult"`
  18. DiagnosedAt int64 `json:"diagnosedAt"`
  19. DiseaseAt int64 `json:"diseaseAt"`
  20. Temperature int32 `json:"temperature"`
  21. Remarks string `json:"remarks"`
  22. OperationId int32 `json:"operationId"`
  23. OperationName string `json:"operationName"`
  24. DiagnoseOperationId int32 `json:"diagnoseOperationId"`
  25. DiagnoseOperationName string `json:"diagnoseOperationName"`
  26. CurableAt int64 `json:"curableAt"`
  27. CreatedAt int64 `json:"createdAt"`
  28. UpdatedAt int64 `json:"updatedAt"`
  29. }
  30. func (e *EventCowDisease) TableName() string {
  31. return "event_cow_disease"
  32. }
  33. func NewEventCowDisease(cow *Cow, disease *Disease, req *pasturePb.EventCowDiseaseRequest, operation *SystemUser) *EventCowDisease {
  34. return &EventCowDisease{
  35. CowId: cow.Id,
  36. CowType: cow.CowType,
  37. Lact: cow.Lact,
  38. DayAge: cow.DayAge,
  39. DiseaseId: int32(disease.Id),
  40. DiseaseName: disease.Name,
  41. DiseaseType: disease.DiseaseType,
  42. DiseaseTypeName: disease.DiseaseTypeName,
  43. PenId: req.PenId,
  44. HealthStatus: pasturePb.HealthStatus_Health,
  45. DiseaseAt: int64(req.DiseaseAt),
  46. Temperature: int32(req.Temperature * 10),
  47. OperationId: int32(operation.Id),
  48. OperationName: operation.Name,
  49. Remarks: req.Remarks,
  50. }
  51. }
  52. type EventCowDiseaseSlice []*EventCowDisease
  53. func (e EventCowDiseaseSlice) ToPB(healthStatusMap map[pasturePb.HealthStatus_Kind]string) []*pasturePb.EventCowDisease {
  54. res := make([]*pasturePb.EventCowDisease, len(e))
  55. for i, v := range e {
  56. res[i] = &pasturePb.EventCowDisease{
  57. Id: int32(v.Id),
  58. CowId: int32(v.CowId),
  59. Lact: v.Lact,
  60. DayAge: v.DayAge,
  61. DiseaseId: v.DiseaseId,
  62. DiseaseName: v.DiseaseName,
  63. DiagnoseId: v.DiagnoseId,
  64. DiagnoseName: v.DiagnoseName,
  65. PenId: v.PenId,
  66. HealthStatus: v.HealthStatus,
  67. HealthStatusName: healthStatusMap[v.HealthStatus],
  68. Temperature: float32(v.HealthStatus / 10),
  69. DiseaseAt: int32(v.DiseaseAt),
  70. Remarks: v.Remarks,
  71. OperationId: v.OperationId,
  72. OperationName: v.OperationName,
  73. }
  74. }
  75. return res
  76. }