event_weaning.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. PlanDay int64 `json:"planDay"`
  12. EndDay int64 `json:"endDay"`
  13. RealityDay int64 `json:"realityDay"`
  14. Status pasturePb.IsShow_Kind `json:"status"`
  15. BeforePenId int32 `json:"beforePenId"`
  16. AfterPenId int32 `json:"afterPenId"`
  17. Remarks string `json:"remarks"`
  18. OperationId int32 `json:"operationId"`
  19. OperationName string `json:"operationName"`
  20. MessageId int32 `json:"messageId"`
  21. MessageName string `json:"messageName"`
  22. CreatedAt int64 `json:"createdAt"`
  23. UpdatedAt int64 `json:"updatedAt"`
  24. }
  25. func (e *EventWeaning) TableName() string {
  26. return "event_weaning"
  27. }
  28. func (e *EventWeaning) EventUpdate(weaningAt int64, remarks string, afterPenId int32, operationUser, currentUser *SystemUser) {
  29. e.Status = pasturePb.IsShow_Ok
  30. e.RealityDay = weaningAt
  31. e.OperationId = int32(operationUser.Id)
  32. e.OperationName = operationUser.Name
  33. e.MessageId = int32(currentUser.Id)
  34. e.MessageName = currentUser.Name
  35. e.Remarks = remarks
  36. e.AfterPenId = afterPenId
  37. }
  38. func NewEventWeaning(pastureId, cowId int64, penId int32) *EventWeaning {
  39. return &EventWeaning{
  40. PastureId: pastureId,
  41. CowId: cowId,
  42. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutDate2)),
  43. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutDate2)),
  44. Status: pasturePb.IsShow_No,
  45. BeforePenId: penId,
  46. }
  47. }
  48. func NewEventWeaningList(pastureId int64, cowList []*Cow) []*EventWeaning {
  49. var weaningList = make([]*EventWeaning, 0)
  50. for _, cow := range cowList {
  51. weaningList = append(weaningList, NewEventWeaning(pastureId, cow.Id, cow.PenId))
  52. }
  53. return weaningList
  54. }