event_transfer_group.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package model
  2. import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  3. type EventTransferGroup struct {
  4. Id int64 `json:"id"`
  5. CowId int64 `json:"cowId"`
  6. PenInId int32 `json:"penInId"`
  7. PenOutId int32 `json:"penOutId"`
  8. DayAge int32 `json:"dayAge"`
  9. Lact int32 `json:"lact"`
  10. TransferDate string `json:"transferDate"`
  11. TransferReasonId int64 `json:"transferReasonId"`
  12. Remarks string `json:"remarks"`
  13. MessageId int64 `json:"messageId"`
  14. MessageName string `json:"messageName"`
  15. OperationId int64 `json:"operationId"`
  16. OperationName string `json:"operationName"`
  17. CreatedAt int64 `json:"createdAt"`
  18. UpdatedAt int64 `json:"updatedAt"`
  19. }
  20. func (e *EventTransferGroup) TableName() string {
  21. return "event_transfer_group"
  22. }
  23. type EventTransferGroupModel struct {
  24. Cow *Cow
  25. EventTransferGroup *EventTransferGroup
  26. }
  27. func NewEventTransferGroup(cow *Cow, req *pasturePb.TransferGroupEventData, currentUser *SystemUser, operationUser *SystemUser) *EventTransferGroup {
  28. return &EventTransferGroup{
  29. CowId: int64(req.CowId),
  30. PenInId: req.TransferInPenId,
  31. PenOutId: cow.PenId,
  32. Lact: cow.Lact,
  33. DayAge: cow.GetDayAge(),
  34. TransferDate: req.TransferDate,
  35. TransferReasonId: int64(req.TransferReasonId),
  36. Remarks: req.Remarks,
  37. MessageId: currentUser.Id,
  38. MessageName: currentUser.Name,
  39. OperationId: operationUser.Id,
  40. OperationName: operationUser.Name,
  41. }
  42. }