event_cow_log.go 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. package model
  2. import (
  3. "fmt"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. )
  6. const ShardTableNumber = 6
  7. type EventCowLog struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. DayAge int32 `json:"dayAge"`
  12. Lact int32 `json:"lact"`
  13. PenId int32 `json:"penId"`
  14. PenName string `json:"penName"`
  15. CowType pasturePb.CowType_Kind `json:"cowType"`
  16. CowTypeName string `json:"cowTypeName"`
  17. EventCategoryId pasturePb.EventCategory_Kind `json:"eventCategoryId"`
  18. EventType pasturePb.EventType_Kind `json:"eventType"`
  19. EventTypeName string `json:"eventTypeName"`
  20. EventDescription string `json:"eventDescription"`
  21. OperationId int64 `json:"operationId"`
  22. OperationName string `json:"operationName"`
  23. EventAt int64 `json:"eventAt"`
  24. Remarks string `json:"remarks"`
  25. CreatedAt int64 `json:"createdAt"`
  26. UpdatedAt int64 `json:"updatedAt"`
  27. }
  28. func (e *EventCowLog) UnShardTableName() string {
  29. return "event_cow_log"
  30. }
  31. // TableName 表名
  32. func (e *EventCowLog) TableName() string {
  33. return fmt.Sprintf("%s_%04d", e.UnShardTableName(), e.CowId%ShardTableNumber)
  34. }
  35. type EventCowLogModel struct {
  36. Cow *Cow
  37. EventType pasturePb.EventType_Kind
  38. OperationUser *SystemUser
  39. CurrentUser *SystemUser
  40. EventAt int64
  41. ExposeEstrusType pasturePb.ExposeEstrusType_Kind
  42. EventCategoryId pasturePb.EventCategory_Kind
  43. PenName string
  44. Remarks string
  45. CowTypeName string
  46. EventTypeName string
  47. Description string
  48. }
  49. func NewEventCowLog(req *EventCowLogModel) *EventCowLog {
  50. operationId := int64(0)
  51. operationName := ""
  52. if req.OperationUser != nil && req.OperationUser.Id > 0 {
  53. operationId = req.OperationUser.Id
  54. operationName = req.OperationUser.Name
  55. }
  56. return &EventCowLog{
  57. PastureId: req.Cow.PastureId,
  58. CowId: req.Cow.Id,
  59. DayAge: req.Cow.GetDayAge(),
  60. Lact: req.Cow.Lact,
  61. PenId: req.Cow.PenId,
  62. PenName: req.PenName,
  63. CowType: req.Cow.CowType,
  64. CowTypeName: req.CowTypeName,
  65. EventCategoryId: req.EventCategoryId,
  66. EventType: req.EventType,
  67. EventTypeName: req.EventTypeName,
  68. EventDescription: req.Description,
  69. OperationId: operationId,
  70. OperationName: operationName,
  71. EventAt: req.EventAt,
  72. Remarks: req.Remarks,
  73. }
  74. }