disease.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package model
  2. import (
  3. "strings"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type Disease struct {
  7. Id int64 `json:"id"`
  8. Name string `json:"name"`
  9. Symptoms string `json:"symptoms"`
  10. DiseaseType int32 `json:"disease_type"`
  11. IsShow pasturePb.IsShow_Kind `json:"is_show"`
  12. Remarks string `json:"remarks"`
  13. OperationId int64 `json:"operation_id"`
  14. CreatedAt int64 `json:"created_at"`
  15. UpdatedAt int64 `json:"updated_at"`
  16. }
  17. func (d *Disease) TableName() string {
  18. return "disease"
  19. }
  20. type DiseaseSlice []*Disease
  21. func (d DiseaseSlice) ToPB(user []*SystemUser, diseaseTypeList []*ConfigDiseaseType) []*pasturePb.SearchDiseaseList {
  22. res := make([]*pasturePb.SearchDiseaseList, len(d))
  23. for i, dl := range d {
  24. operationName, diseaseTypeName := "", ""
  25. for _, u := range user {
  26. if u.Id == dl.OperationId {
  27. operationName = u.NickName
  28. }
  29. }
  30. for _, dt := range diseaseTypeList {
  31. if dt.Id == int64(dl.DiseaseType) {
  32. diseaseTypeName = dt.Name
  33. }
  34. }
  35. res[i] = &pasturePb.SearchDiseaseList{
  36. Id: int32(dl.Id),
  37. Remarks: dl.Remarks,
  38. OperationId: int32(dl.OperationId),
  39. OperationName: operationName,
  40. Name: dl.Name,
  41. DiseaseTypeId: dl.DiseaseType,
  42. DiseaseTypeName: diseaseTypeName,
  43. Symptoms: strings.Split(dl.Symptoms, "|"),
  44. IsShow: dl.IsShow,
  45. CreatedAt: int32(dl.CreatedAt),
  46. UpdatedAt: int32(dl.UpdatedAt),
  47. }
  48. }
  49. return res
  50. }