neck_ring.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package model
  2. import (
  3. "kpt-pasture/store/kptstore"
  4. "time"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type NeckRing struct {
  8. Id int64 `json:"id"`
  9. Number string `json:"number"`
  10. CowId int64 `json:"cowId"`
  11. WearAt int64 `json:"wearAt"`
  12. Status pasturePb.NeckRingStatus_Kind `json:"status"`
  13. ErrorReason string `json:"errorReason"`
  14. OperationId int32 `json:"operationId"`
  15. OperationName string `json:"operationName"`
  16. CreatedAt int64 `json:"createdAt"`
  17. UpdatedAt int64 `json:"updatedAt"`
  18. }
  19. func (n *NeckRing) TableName() string {
  20. return "neck_ring"
  21. }
  22. func (n *NeckRing) Update(cowId int64) {
  23. n.CowId = cowId
  24. n.WearAt = time.Now().Unix()
  25. }
  26. func NewNeckRing(number string, cowId int64, operationUser *SystemUser) *NeckRing {
  27. return &NeckRing{
  28. Number: number,
  29. CowId: cowId,
  30. WearAt: time.Now().Unix(),
  31. Status: pasturePb.NeckRingStatus_Bind,
  32. OperationId: int32(operationUser.Id),
  33. OperationName: operationUser.Name,
  34. }
  35. }
  36. type NeckRingSlice []*NeckRing
  37. func (n NeckRingSlice) ToPB(
  38. neckRingStatus map[pasturePb.NeckRingStatus_Kind]string,
  39. db *kptstore.DB,
  40. getCowPenInfoByCowId func(DB *kptstore.DB, cowId int64) *Pen,
  41. ) []*pasturePb.SearchNeckRingList {
  42. res := make([]*pasturePb.SearchNeckRingList, len(n))
  43. for i, v := range n {
  44. penId := int32(0)
  45. penName := ""
  46. if v.CowId > 0 {
  47. penInfo := getCowPenInfoByCowId(db, v.CowId)
  48. if penInfo != nil {
  49. penId = penInfo.Id
  50. penName = penInfo.Name
  51. }
  52. }
  53. wearAtFormat := ""
  54. wearDays := int32(0)
  55. if v.WearAt > 0 {
  56. wearAtFormat = time.Unix(v.WearAt, 0).Format(LayoutDate2)
  57. wearDays = int32(time.Now().Sub(time.Unix(v.WearAt, 0)).Hours() / 24)
  58. }
  59. res[i] = &pasturePb.SearchNeckRingList{
  60. Id: int32(v.Id),
  61. Number: v.Number,
  62. PenId: penId,
  63. PenName: penName,
  64. CowId: int32(v.CowId),
  65. WearAtFormat: wearAtFormat,
  66. WearDays: wearDays,
  67. Status: v.Status,
  68. StatusName: neckRingStatus[v.Status],
  69. ErrorReason: v.ErrorReason,
  70. }
  71. }
  72. return res
  73. }