frozen_semen_log.go 629 B

123456789101112131415161718192021222324
  1. package model
  2. type FrozenSemenLog struct {
  3. Id int64 `json:"id"`
  4. BullId string `json:"bull_id"`
  5. CowId int64 `json:"cow_id"`
  6. Quantity int32 `json:"quantity"`
  7. StallNumberId int64 `json:"stall_number_id"`
  8. CreatedAt int64 `json:"created_at"`
  9. UpdatedAt int64 `json:"updated_at"`
  10. }
  11. func (e *FrozenSemenLog) TableName() string {
  12. return "frozen_semen_log"
  13. }
  14. func NewEventFrozenSemenLog(bullId string, cow *Cow, stallNumberId int64) *FrozenSemenLog {
  15. return &FrozenSemenLog{
  16. BullId: bullId,
  17. CowId: cow.Id,
  18. StallNumberId: stallNumberId,
  19. Quantity: 1,
  20. }
  21. }