frozen_semen_log.go 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. package model
  2. type FrozenSemenLog struct {
  3. Id int64 `json:"id"`
  4. PastureId int64 `json:"pastureId"`
  5. BullId string `json:"bullId"`
  6. CowId int64 `json:"cowId"`
  7. EarNumber string `json:"earNumber"`
  8. Quantity int32 `json:"quantity"`
  9. MatingAt int64 `json:"matingAt"`
  10. OperationId int64 `json:"operationId"`
  11. OperationName string `json:"operationName"`
  12. Remarks string `json:"remarks"`
  13. CreatedAt int64 `json:"createdAt"`
  14. UpdatedAt int64 `json:"updatedAt"`
  15. }
  16. func (e *FrozenSemenLog) TableName() string {
  17. return "frozen_semen_log"
  18. }
  19. func NewEventFrozenSemenLog(pastureId int64, item *EventMatingCheckBatchModel) *FrozenSemenLog {
  20. return &FrozenSemenLog{
  21. PastureId: pastureId,
  22. BullId: item.FrozenSemen.BullId,
  23. CowId: item.Cow.Id,
  24. EarNumber: item.Cow.EarNumber,
  25. OperationId: item.OperationUser.Id,
  26. OperationName: item.OperationUser.Name,
  27. Quantity: item.FrozenSemenCount,
  28. MatingAt: item.MatingAt,
  29. Remarks: item.Remarks,
  30. }
  31. }