event_immunization_plan.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package model
  2. import (
  3. "kpt-pasture/util"
  4. "time"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type EventImmunizationPlan struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. Lact int32 `json:"lact"`
  12. DayAge int32 `json:"dayAge"`
  13. CowType pasturePb.CowType_Kind `json:"cowType"`
  14. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  15. PenId int32 `json:"penId"`
  16. PenName string `json:"penName"`
  17. PlanId int64 `json:"planId"`
  18. PlanName string `json:"planName"`
  19. PlanDay int64 `json:"planDay"`
  20. RealityDay int64 `json:"realityDay"`
  21. EndDay int64 `json:"endDay"`
  22. Status pasturePb.IsShow_Kind `json:"status"`
  23. OperationId int64 `json:"operationId"`
  24. OperationName string `json:"operationName"`
  25. DrugsId int64 `json:"drugsId"`
  26. DrugsName string `json:"drugsName"`
  27. Unit pasturePb.Unit_Kind `json:"unit"`
  28. UnitName string `json:"unitName"`
  29. Usage int32 `json:"usage"`
  30. Remarks string `json:"remarks"`
  31. CreatedAt int64 `json:"createdAt"`
  32. UpdatedAt int64 `json:"updatedAt"`
  33. }
  34. func (c *EventImmunizationPlan) TableName() string {
  35. return "event_immunization_plan"
  36. }
  37. func NewCowImmunizationPlan(cow *Cow, pen *Pen, immunizationPlan *ImmunizationPlan) *EventImmunizationPlan {
  38. todayTime := time.Now().Format(LayoutDate2)
  39. todayStartTime := util.TimeParseLocalUnix(todayTime)
  40. todayEndTime := util.TimeParseLocalEndUnix(todayTime)
  41. return &EventImmunizationPlan{
  42. PastureId: immunizationPlan.PastureId,
  43. CowId: cow.Id,
  44. Lact: cow.Lact,
  45. DayAge: cow.DayAge,
  46. CowKind: cow.CowKind,
  47. CowType: cow.CowType,
  48. PenId: cow.PenId,
  49. PenName: pen.Name,
  50. PlanId: immunizationPlan.Id,
  51. PlanName: immunizationPlan.Name,
  52. PlanDay: todayStartTime,
  53. EndDay: todayEndTime,
  54. Status: pasturePb.IsShow_No,
  55. }
  56. }
  57. func NewCowImmunizationPlanList(cowList []*Cow, penMap map[int32]*Pen, immunizationPlan *ImmunizationPlan) []*EventImmunizationPlan {
  58. cowImmunizationPlanList := make([]*EventImmunizationPlan, len(cowList))
  59. for i, cow := range cowList {
  60. pen := penMap[cow.PenId]
  61. cowImmunizationPlanList[i] = NewCowImmunizationPlan(cow, pen, immunizationPlan)
  62. }
  63. return cowImmunizationPlanList
  64. }
  65. type EventImmunizationPlanSlice []*EventImmunizationPlan
  66. func (I EventImmunizationPlanSlice) ToPB() []*pasturePb.ImmunizationItems {
  67. res := make([]*pasturePb.ImmunizationItems, len(I))
  68. for i, v := range I {
  69. res[i] = &pasturePb.ImmunizationItems{
  70. Id: int32(v.Id),
  71. CowId: int32(v.CowId),
  72. PenId: v.PenId,
  73. Lact: v.Lact,
  74. PenName: v.PenName,
  75. DayAge: v.DayAge,
  76. PlanDay: time.Unix(v.PlanDay, 0).Format(LayoutDate2),
  77. Status: v.Status,
  78. ImmunizationName: v.PlanName,
  79. ImmunizationId: int32(v.PlanId),
  80. Remarks: v.Remarks,
  81. OperatorId: int32(v.OperationId),
  82. OperatorName: v.OperationName,
  83. DrugId: int32(v.DrugsId),
  84. DrugName: v.DrugsName,
  85. Unit: v.Unit,
  86. UnitName: v.UnitName,
  87. Usage: v.Usage,
  88. CreatedAt: int32(v.CreatedAt),
  89. UpdatedAt: int32(v.UpdatedAt),
  90. }
  91. }
  92. return res
  93. }