event_cow_disease.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. MessageId int32 `json:"messageId"`
  25. MessageName string `json:"messageName"`
  26. DiagnoseOperationId int32 `json:"diagnoseOperationId"`
  27. DiagnoseOperationName string `json:"diagnoseOperationName"`
  28. CurableAt int64 `json:"curableAt"`
  29. Source string `json:"source"`
  30. CreatedAt int64 `json:"createdAt"`
  31. UpdatedAt int64 `json:"updatedAt"`
  32. }
  33. func (e *EventCowDisease) TableName() string {
  34. return "event_cow_disease"
  35. }
  36. func NewEventCowDisease(cow *Cow, disease *Disease, req *pasturePb.EventCowDiseaseRequest, operation, currUser *SystemUser) *EventCowDisease {
  37. return &EventCowDisease{
  38. CowId: cow.Id,
  39. CowType: cow.CowType,
  40. Lact: cow.Lact,
  41. DayAge: cow.DayAge,
  42. DiseaseId: int32(disease.Id),
  43. DiseaseName: disease.Name,
  44. DiseaseType: disease.DiseaseType,
  45. DiseaseTypeName: disease.DiseaseTypeName,
  46. PenId: req.PenId,
  47. HealthStatus: pasturePb.HealthStatus_Health,
  48. DiseaseAt: int64(req.DiseaseAt),
  49. Temperature: int32(req.Temperature * 10),
  50. OperationId: int32(operation.Id),
  51. OperationName: operation.Name,
  52. MessageId: int32(currUser.Id),
  53. MessageName: currUser.Name,
  54. Remarks: req.Remarks,
  55. DiagnosedResult: pasturePb.IsShow_No,
  56. Source: SourceApp,
  57. DiagnosedAt: int64(req.DiseaseAt),
  58. }
  59. }
  60. type EventCowDiseaseSlice []*EventCowDisease
  61. func (e EventCowDiseaseSlice) ToPB(healthStatusMap map[pasturePb.HealthStatus_Kind]string) []*pasturePb.EventCowDisease {
  62. res := make([]*pasturePb.EventCowDisease, len(e))
  63. for i, v := range e {
  64. res[i] = &pasturePb.EventCowDisease{
  65. Id: int32(v.Id),
  66. CowId: int32(v.CowId),
  67. Lact: v.Lact,
  68. DayAge: v.DayAge,
  69. DiseaseId: v.DiseaseId,
  70. DiseaseName: v.DiseaseName,
  71. DiagnoseId: v.DiagnoseId,
  72. DiagnoseName: v.DiagnoseName,
  73. PenId: v.PenId,
  74. HealthStatus: v.HealthStatus,
  75. HealthStatusName: healthStatusMap[v.HealthStatus],
  76. Temperature: float32(v.HealthStatus / 10),
  77. DiseaseAt: int32(v.DiseaseAt),
  78. Remarks: v.Remarks,
  79. OperationId: v.OperationId,
  80. OperationName: v.OperationName,
  81. }
  82. }
  83. return res
  84. }