event_cow_disease.go 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type EventCowDisease struct {
  7. Id int64 `json:"id"`
  8. PastureId int64 `json:"pastureId"`
  9. CowId int64 `json:"cowId"`
  10. CowType pasturePb.CowType_Kind `json:"cowType"`
  11. Lact int32 `json:"lact"`
  12. DayAge int32 `json:"dayAge"`
  13. DiseaseId int32 `json:"diseaseId"`
  14. DiseaseName string `json:"diseaseName"`
  15. DiseaseType int32 `json:"diseaseType"`
  16. DiseaseTypeName string `json:"diseaseTypeName"`
  17. DiagnoseId int32 `json:"diagnoseId"`
  18. DiagnoseName string `json:"diagnoseName"`
  19. PenId int32 `json:"penId"`
  20. HealthStatus pasturePb.HealthStatus_Kind `json:"healthStatus"`
  21. DiagnosedResult pasturePb.IsShow_Kind `json:"diagnosedResult"`
  22. DiagnosedAt int64 `json:"diagnosedAt"`
  23. DiseaseAt int64 `json:"diseaseAt"`
  24. Temperature int32 `json:"temperature"`
  25. Remarks string `json:"remarks"`
  26. OperationId int32 `json:"operationId"`
  27. OperationName string `json:"operationName"`
  28. MessageId int32 `json:"messageId"`
  29. MessageName string `json:"messageName"`
  30. DiagnoseOperationId int32 `json:"diagnoseOperationId"`
  31. DiagnoseOperationName string `json:"diagnoseOperationName"`
  32. CurableAt int64 `json:"curableAt"`
  33. Source string `json:"source"`
  34. CreatedAt int64 `json:"createdAt"`
  35. UpdatedAt int64 `json:"updatedAt"`
  36. }
  37. func (e *EventCowDisease) TableName() string {
  38. return "event_cow_disease"
  39. }
  40. // EventUnDiseaseUpdate 诊断未生病
  41. func (e *EventCowDisease) EventUnDiseaseUpdate(operation *SystemUser, remarks string) {
  42. e.DiagnosedResult = pasturePb.IsShow_No
  43. e.DiagnoseOperationId = int32(operation.Id)
  44. e.DiagnoseOperationName = operation.Name
  45. e.Remarks = remarks
  46. }
  47. // EventDiseaseUpdate 诊断有生病
  48. func (e *EventCowDisease) EventDiseaseUpdate(disease *Disease, operationUser *SystemUser, temp float32) {
  49. e.HealthStatus = pasturePb.HealthStatus_Disease
  50. e.DiagnosedResult = pasturePb.IsShow_Ok
  51. e.DiagnoseId = int32(disease.Id)
  52. e.DiagnoseName = disease.Name
  53. e.Temperature = int32(temp * 100)
  54. e.DiagnoseOperationId = int32(operationUser.Id)
  55. e.DiagnoseOperationName = operationUser.Name
  56. e.DiseaseAt = time.Now().Unix()
  57. }
  58. // EventHealthStatusUpdate 改变健康状态
  59. func (e *EventCowDisease) EventHealthStatusUpdate(healthStatus pasturePb.HealthStatus_Kind) {
  60. e.HealthStatus = healthStatus
  61. }
  62. // EventCurableUpdate 治愈
  63. func (e *EventCowDisease) EventCurableUpdate(cureAt int64) {
  64. e.HealthStatus = pasturePb.HealthStatus_Curable
  65. e.CurableAt = cureAt
  66. e.DiagnosedResult = pasturePb.IsShow_Ok
  67. }
  68. func NewEventCowDisease(pastureId int64, cow *Cow, disease *Disease, req *pasturePb.EventCowDiseaseRequest, operation, currUser *SystemUser) *EventCowDisease {
  69. return &EventCowDisease{
  70. PastureId: pastureId,
  71. CowId: cow.Id,
  72. CowType: cow.CowType,
  73. Lact: cow.Lact,
  74. DayAge: cow.DayAge,
  75. DiseaseId: int32(disease.Id),
  76. DiseaseName: disease.Name,
  77. DiseaseType: disease.DiseaseType,
  78. DiseaseTypeName: disease.DiseaseTypeName,
  79. PenId: req.PenId,
  80. HealthStatus: pasturePb.HealthStatus_Health,
  81. DiseaseAt: int64(req.DiseaseAt),
  82. Temperature: int32(req.Temperature * 10),
  83. OperationId: int32(operation.Id),
  84. OperationName: operation.Name,
  85. MessageId: int32(currUser.Id),
  86. MessageName: currUser.Name,
  87. Remarks: req.Remarks,
  88. DiagnosedResult: pasturePb.IsShow_No,
  89. Source: SourceApp,
  90. DiagnosedAt: int64(req.DiseaseAt),
  91. }
  92. }
  93. type EventCowDiseaseSlice []*EventCowDisease
  94. func (e EventCowDiseaseSlice) ToPB(healthStatusMap map[pasturePb.HealthStatus_Kind]string) []*pasturePb.EventCowDisease {
  95. res := make([]*pasturePb.EventCowDisease, len(e))
  96. for i, v := range e {
  97. res[i] = &pasturePb.EventCowDisease{
  98. Id: int32(v.Id),
  99. CowId: int32(v.CowId),
  100. Lact: v.Lact,
  101. DayAge: v.DayAge,
  102. DiseaseId: v.DiseaseId,
  103. DiseaseName: v.DiseaseName,
  104. DiagnoseId: v.DiagnoseId,
  105. DiagnoseName: v.DiagnoseName,
  106. PenId: v.PenId,
  107. HealthStatus: v.HealthStatus,
  108. HealthStatusName: healthStatusMap[v.HealthStatus],
  109. Temperature: float32(v.HealthStatus / 10),
  110. DiseaseAt: int32(v.DiseaseAt),
  111. Remarks: v.Remarks,
  112. OperationId: v.OperationId,
  113. OperationName: v.OperationName,
  114. }
  115. }
  116. return res
  117. }