event_weaning.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package model
  2. import (
  3. "kpt-pasture/util"
  4. "strconv"
  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. MotherId int64 `json:"motherId"`
  12. BullNumber string `json:"bullNumber"`
  13. PlanDay int64 `json:"planDay"`
  14. EndDay int64 `json:"endDay"`
  15. RealityDay int64 `json:"realityDay"`
  16. Status pasturePb.IsShow_Kind `json:"status"`
  17. BeforePenId int32 `json:"beforePenId"`
  18. AfterPenId int32 `json:"afterPenId"`
  19. Weight int32 `json:"weight"`
  20. Remarks string `json:"remarks"`
  21. OperationId int32 `json:"operationId"`
  22. OperationName string `json:"operationName"`
  23. MessageId int32 `json:"messageId"`
  24. MessageName string `json:"messageName"`
  25. CreatedAt int64 `json:"createdAt"`
  26. UpdatedAt int64 `json:"updatedAt"`
  27. }
  28. func (e *EventWeaning) TableName() string {
  29. return "event_weaning"
  30. }
  31. func (e *EventWeaning) EventUpdate(weaningAt int64, weight int32, remarks string, afterPenId int32, operationUser, currentUser *SystemUser) {
  32. e.Status = pasturePb.IsShow_Ok
  33. e.RealityDay = weaningAt
  34. e.OperationId = int32(operationUser.Id)
  35. e.OperationName = operationUser.Name
  36. e.MessageId = int32(currentUser.Id)
  37. e.MessageName = currentUser.Name
  38. e.Remarks = remarks
  39. e.AfterPenId = afterPenId
  40. e.Weight = weight
  41. }
  42. func NewEventWeaning(pastureId int64, cowInfo *Cow, startDay, endDay string) *EventWeaning {
  43. motherId, _ := strconv.ParseInt(cowInfo.MotherNumber, 10, 64)
  44. return &EventWeaning{
  45. PastureId: pastureId,
  46. MotherId: motherId,
  47. BullNumber: cowInfo.LastBullNumber,
  48. CowId: cowInfo.Id,
  49. PlanDay: util.TimeParseLocalUnix(startDay),
  50. EndDay: util.TimeParseLocalEndUnix(endDay),
  51. Status: pasturePb.IsShow_No,
  52. BeforePenId: cowInfo.PenId,
  53. Weight: 0,
  54. }
  55. }
  56. func NewEventWeaningList(pastureId int64, cowList []*Cow, startDay, endDay string) []*EventWeaning {
  57. var weaningList = make([]*EventWeaning, 0)
  58. for _, cow := range cowList {
  59. weaningList = append(weaningList, NewEventWeaning(pastureId, cow, startDay, endDay))
  60. }
  61. return weaningList
  62. }