event_item.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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 EventItem struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. EarNumber string `json:"earNumber"`
  12. PenId int32 `json:"penId"`
  13. Lact int32 `json:"lact"`
  14. CalendarType pasturePb.CalendarType_Kind `json:"calendarType"`
  15. PlanDay int64 `json:"planDay"`
  16. EndDay int64 `json:"endDay"`
  17. RealityDay int64 `json:"realityDay"`
  18. IsFinish pasturePb.IsShow_Kind `json:"isFinish"`
  19. IsExpire pasturePb.IsShow_Kind `json:"isExpire"`
  20. OperationId int64 `json:"operationId"`
  21. OperationName string `json:"operationName"`
  22. Remarks string `json:"remarks"`
  23. CreatedAt int64 `json:"createdAt"`
  24. UpdatedAt int64 `json:"updatedAt"`
  25. }
  26. func (e *EventItem) TableName() string {
  27. return "event_item"
  28. }
  29. func NewEventItem(cow *Cow, calendarType pasturePb.CalendarType_Kind) *EventItem {
  30. return &EventItem{
  31. PastureId: cow.PastureId,
  32. CowId: cow.Id,
  33. EarNumber: cow.EarNumber,
  34. PenId: cow.PenId,
  35. Lact: cow.Lact,
  36. CalendarType: calendarType,
  37. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutDate2)),
  38. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutDate2)),
  39. IsFinish: pasturePb.IsShow_Ok,
  40. }
  41. }
  42. func NewEventItemList(cowList []*Cow, calendarType pasturePb.CalendarType_Kind) []*EventItem {
  43. res := make([]*EventItem, len(cowList))
  44. for i, v := range cowList {
  45. res[i] = NewEventItem(v, calendarType)
  46. }
  47. return res
  48. }
  49. type EventItemSlice []*EventItem
  50. func (e EventItemSlice) ToPB(penMap map[int32]*Pen, calendarType map[pasturePb.CalendarType_Kind]string) []*pasturePb.CalendarToDoList {
  51. res := make([]*pasturePb.CalendarToDoList, len(e))
  52. for i, v := range e {
  53. penName := ""
  54. if pen, ok := penMap[v.PenId]; ok {
  55. penName = pen.Name
  56. }
  57. res[i] = &pasturePb.CalendarToDoList{
  58. Id: int32(v.Id),
  59. CowId: int32(v.CowId),
  60. EarNumber: v.EarNumber,
  61. Lact: v.Lact,
  62. CalendarType: v.CalendarType,
  63. CalendarTypeName: calendarType[v.CalendarType],
  64. PlanDay: time.Unix(v.PlanDay, 0).Format(LayoutDate2),
  65. EndDay: time.Unix(v.EndDay, 0).Format(LayoutDate2),
  66. RealityDay: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  67. IsFinish: v.IsFinish,
  68. IsExpire: v.IsExpire,
  69. PenName: penName,
  70. Remarks: v.Remarks,
  71. }
  72. }
  73. return res
  74. }