event_weaning.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package model
  2. import (
  3. "kpt-pasture/util"
  4. "time"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type EventWeaning struct {
  8. Id int64 `json:"id"`
  9. CowId int64 `json:"cowId"`
  10. PlanDay int64 `json:"planDay"`
  11. EndDay int64 `json:"endDay"`
  12. RealityDay int64 `json:"realityDay"`
  13. Status pasturePb.IsShow_Kind `json:"status"`
  14. BeforePenId int32 `json:"beforePenId"`
  15. AfterPenId int32 `json:"afterPenId"`
  16. Remarks string `json:"remarks"`
  17. OperationId int32 `json:"operationId"`
  18. OperationName string `json:"operationName"`
  19. MessageId int32 `json:"messageId"`
  20. MessageName string `json:"messageName"`
  21. CreatedAt int64 `json:"createdAt"`
  22. UpdatedAt int64 `json:"updatedAt"`
  23. }
  24. func (e *EventWeaning) TableName() string {
  25. return "event_weaning"
  26. }
  27. func (e *EventWeaning) EventUpdate(weaningAt int64, remarks string, afterPenId int32, operationUser, currentUser *SystemUser) {
  28. e.Status = pasturePb.IsShow_Ok
  29. e.RealityDay = weaningAt
  30. e.OperationId = int32(operationUser.Id)
  31. e.OperationName = operationUser.Name
  32. e.MessageId = int32(currentUser.Id)
  33. e.MessageName = currentUser.Name
  34. e.Remarks = remarks
  35. e.AfterPenId = afterPenId
  36. }
  37. func NewEventWeaning(cowId int64, penId int32) *EventWeaning {
  38. return &EventWeaning{
  39. CowId: cowId,
  40. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutDate2)),
  41. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutDate2)),
  42. Status: pasturePb.IsShow_No,
  43. BeforePenId: penId,
  44. }
  45. }
  46. func NewEventWeaningList(cowList []*Cow) []*EventWeaning {
  47. var weaningList = make([]*EventWeaning, 0)
  48. for _, cow := range cowList {
  49. weaningList = append(weaningList, NewEventWeaning(cow.Id, cow.PenId))
  50. }
  51. return weaningList
  52. }