frozen_semen_log.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package model
  2. import (
  3. "fmt"
  4. "strings"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type FrozenSemenLog struct {
  8. Id int64 `json:"id"`
  9. BullId string `json:"bullId"`
  10. CowIds string `json:"cowId"`
  11. Quantity int32 `json:"quantity"`
  12. MatingAt int64 `json:"matingAt"`
  13. OperationId int64 `json:"operationId"`
  14. OperationName string `json:"operationName"`
  15. Remarks string `json:"remarks"`
  16. CreatedAt int64 `json:"createdAt"`
  17. UpdatedAt int64 `json:"updatedAt"`
  18. }
  19. func (e *FrozenSemenLog) TableName() string {
  20. return "frozen_semen_log"
  21. }
  22. func NewEventFrozenSemenLog(req *pasturePb.EventMating) *FrozenSemenLog {
  23. cowIds := ""
  24. for _, v := range req.CowIds {
  25. cowIds += fmt.Sprintf("%d,", v)
  26. }
  27. if len(cowIds) > 0 {
  28. cowIds = strings.TrimRight(cowIds, ",")
  29. }
  30. return &FrozenSemenLog{
  31. BullId: req.FrozenSemenNumber,
  32. CowIds: cowIds,
  33. OperationId: int64(req.OperationId),
  34. OperationName: req.OperationName,
  35. Quantity: req.FrozenSemenCount,
  36. MatingAt: int64(req.MatingAt),
  37. Remarks: req.Remarks,
  38. }
  39. }