event_cow_log.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. CowId int64 `json:"cowId"`
  10. DayAge int32 `json:"dayAge"`
  11. Lact int32 `json:"lact"`
  12. PenId int32 `json:"penId"`
  13. PenName string `json:"penName"`
  14. CowType pasturePb.CowType_Kind `json:"cowType"`
  15. CowTypeName string `json:"cowTypeName"`
  16. EventType pasturePb.EventType_Kind `json:"eventType"`
  17. EventTypeName string `json:"eventTypeName"`
  18. EventDescription string `json:"eventDescription"`
  19. OperationId int64 `json:"operationId"`
  20. OperationName string `json:"operationName"`
  21. EventAt int64 `json:"eventAt"`
  22. Remarks string `json:"remarks"`
  23. CreatedAt int64 `json:"createdAt"`
  24. UpdatedAt int64 `json:"updatedAt"`
  25. }
  26. func (e *EventCowLog) UnShardTableName() string {
  27. return "event_cow_log"
  28. }
  29. // TableName 表名
  30. func (e *EventCowLog) TableName() string {
  31. return fmt.Sprintf("%s_%04d", e.UnShardTableName(), e.CowId%ShardTableNumber)
  32. }
  33. type EventCowLogModel struct {
  34. Cow *Cow
  35. EventType pasturePb.EventType_Kind
  36. OperationUser *SystemUser
  37. CurrentUser *SystemUser
  38. EventAt int64
  39. ExposeEstrusType pasturePb.ExposeEstrusType_Kind
  40. PenName string
  41. Remarks string
  42. CowTypeName string
  43. EventTypeName string
  44. Description string
  45. }
  46. func NewEventCowLog(req *EventCowLogModel) *EventCowLog {
  47. operationId := int64(0)
  48. operationName := ""
  49. if req.OperationUser != nil && req.OperationUser.Id > 0 {
  50. operationId = req.OperationUser.Id
  51. operationName = req.OperationUser.Name
  52. }
  53. return &EventCowLog{
  54. CowId: req.Cow.Id,
  55. DayAge: req.Cow.GetDayAge(),
  56. Lact: req.Cow.Lact,
  57. PenId: req.Cow.PenId,
  58. PenName: req.PenName,
  59. CowType: req.Cow.CowType,
  60. CowTypeName: req.CowTypeName,
  61. EventType: req.EventType,
  62. EventTypeName: req.EventTypeName,
  63. EventDescription: req.Description,
  64. OperationId: operationId,
  65. OperationName: operationName,
  66. EventAt: req.EventAt,
  67. Remarks: req.Remarks,
  68. }
  69. }