immunization_plan_cow.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import (
  3. "time"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. type ImmunizationPlanCow struct {
  7. Id int64 `json:"id"`
  8. CowId int64 `json:"cowId"`
  9. ImmunizationPlanId int64 `json:"immunizationPlanId"`
  10. ImmunizationPlanName string `json:"immunizationPlanName"`
  11. PlanStartTime string `json:"planStartTime"`
  12. RealityTime string `json:"realityTime"`
  13. Status pasturePb.IsShow_Kind `json:"status"`
  14. OperationId int64 `json:"operationId"`
  15. OperationName string `json:"operationName"`
  16. DrugsId int64 `json:"drugsId"`
  17. Unit pasturePb.Unit_Kind `json:"unit"`
  18. Usage string `json:"usage"`
  19. Remarks string `json:"remarks"`
  20. CreateAt int64 `json:"createAt"`
  21. UpdateAt int64 `json:"updateAt"`
  22. }
  23. func (i *ImmunizationPlanCow) TableName() string {
  24. return "immunization_plan_cow"
  25. }
  26. func NewImmunizationPlanCow(cowId int64, immunizationPlan *ImmunizationPlan) *ImmunizationPlanCow {
  27. return &ImmunizationPlanCow{
  28. CowId: cowId,
  29. ImmunizationPlanId: immunizationPlan.Id,
  30. ImmunizationPlanName: immunizationPlan.Name,
  31. PlanStartTime: time.Now().Format(LayoutDate2),
  32. Status: pasturePb.IsShow_No,
  33. }
  34. }
  35. func NewImmunizationPlanCowList(cowList []*Cow, immunizationPlan *ImmunizationPlan) []*ImmunizationPlanCow {
  36. immunizationPlanCowList := make([]*ImmunizationPlanCow, len(cowList))
  37. for i, v := range cowList {
  38. immunizationPlanCowList[i] = NewImmunizationPlanCow(v.Id, immunizationPlan)
  39. }
  40. return immunizationPlanCowList
  41. }